var preloadFlag = false;

function newImage(arg) {
    if (document.images) {
        rslt = new Image();
        rslt.src = arg;
        return rslt;
    }
}
		
function preloadImages_Titles(subDirPath, PageCode) {
    if (document.images) {
        switch (PageCode.toUpperCase()) {
            case 'HOME':
                bg_img1 = newImage("http://www.bibas.ro/Resources/Images/bg_content_top_over.png");
		bg_img2 = newImage("http://www.bibas.ro/Resources/Images/bg_content_middle_over.png");
                preloadFlag = true;
                break;
            case 'GastroCC':
                title_img1 = newImage(subDirPath + "../Resources/Images/GastroCC_Rollover/Consulting2.png");
                title_img2 = newImage(subDirPath + "../Resources/Images/GastroCC_Rollover/Training3.png");
                title_img3 = newImage(subDirPath + "../Resources/Images/GastroCC_Rollover/Events3.png");
                title_img4 = newImage(subDirPath + "../Resources/Images/GastroCC_Rollover/Arch_internal3.png");
                title_img5 = newImage(subDirPath + "../Resources/Images/GastroCC_Rollover/Cafe2.png");
                title_img6 = newImage(subDirPath + "../Resources/Images/GastroCC_Rollover/Hotel2.png");
                title_img7 = newImage(subDirPath + "../Resources/Images/GastroCC_Rollover/Bar2.png");
                title_img8 = newImage(subDirPath + "../Resources/Images/GastroCC_Rollover/Gelateria2.png");
                title_img9 = newImage(subDirPath + "../Resources/Images/GastroCC_Rollover/Franchising2.png");
                title_img10 = newImage(subDirPath + "../Resources/Images/GastroCC_Rollover/restaurantRO.png");
                title_img11 = newImage(subDirPath + "../Resources/Images/GastroCC_Rollover/confRO.png");
                tooltip_image1 = newImage(subdirp, "../Resources/Images/Segafredo.jpg");
                tooltip_image2 = newImage(subdirp, "../Resources/Images/Il_Gelato_Bruno.jpg");
                tooltip_image3 = newImage(subdirp, "../Resources/Images/Dolce_Bio.jpg");
                tooltip_image4 = newImage(subdirp, "../Resources/Images/Santa_Fe.jpg");
                tooltip_image5 = newImage(subdirp, "../Resources/Images/Yo_Me.jpg");
                preloadFlag = true;
                break;
        }
	}
}

