
// Preloading Images
var NewImgs = new Array('Image/barAll1.gif',
'Image/TitleAr1.gif',
'Image/TitleEn1.gif',
'Image/ByAra1.gif',
'Image/ByEng1.gif',

"Image/Menue/homeA.gif",
"Image/Menue/ExhibA.gif",
"Image/Menue/GALLERYA.gif",
"Image/Menue/MailListA.gif",
"Image/Menue/ProductsA.gif",
"Image/Menue/TUTORIALSA.gif",
"Image/Menue/VBookA.gif",

"Image/Menue/homeE.gif",
"Image/Menue/ExhibE.gif",
"Image/Menue/GALLERYE.gif",
"Image/Menue/MailListE.gif",
"Image/Menue/ProductsE.gif",
"Image/Menue/TUTORIALSE.gif",
"Image/Menue/VBookE.gif",

"Image/Line1.gif",
"Image/Line2.gif",
"Image/Line3.gif",
"Image/Line4.gif",

"tutorials/Img11/1.gif",
"tutorials/Img11/2.gif",
"tutorials/Img11/3.gif",
"tutorials/Img11/4.gif",
"tutorials/Img11/5.gif",
"tutorials/Img11/6.gif",
"tutorials/Img11/7.gif",
"tutorials/Img11/8.gif",
"tutorials/Img11/9.gif",
"tutorials/Img11/10.gif",

"tutorials/Img11/11.gif",
"tutorials/Img11/12.gif",
"tutorials/Img11/13.gif",
"tutorials/Img11/14.gif",
"tutorials/Img11/15.gif",
"tutorials/Img11/16.gif",
"tutorials/Img11/17.gif",
"tutorials/Img11/18.gif",
"tutorials/Img11/19.gif",
"tutorials/Img11/20.gif",

"tutorials/Img11/21.gif",
"tutorials/Img11/22.gif",
"tutorials/Img11/23.gif",
"tutorials/Img11/24.gif",
"tutorials/Img11/25.gif",
"tutorials/Img11/26.gif",

"tutorials/t1/tutorial1.gif"
);




var imgLen = NewImgs.length;
var loaded = new Array(), preImages = new Array(), currCount = 0, pending = 0;

function loadImages() {
	for (i = 0; i < imgLen; i++) {
		preImages[i] = new Image();
		preImages[i].src = NewImgs[i];
		loaded[i] = 0;
		
	}
	
//	checkLoad();
}

function checkLoad() {
	if (currCount == imgLen) { setTimeout("Wait_fadeOut()",1000); return; }
	for (i = 0; i < imgLen; i++) {
		if (!loaded[i] && preImages[i].complete) {
			loaded[i] = 1; pending++; currCount++;
			checkLoad();
			return;
		}
	}
	setTimeout("checkLoad()",10);
}



////////// other functions


function Fade_In(){

  $(document).ready(function(){
							 
	$("#Wait").css("marginTop",240);						 
    $("#Wait").fadeIn(1000,function(){
									setTimeout("checkLoad()",1500)
									});
	
  });

setTimeout("loadImages()",1200)


}



function Wait_fadeOut(){
	
  $(document).ready(function(){
    $("#Wait").fadeOut(1500,function(){
									
									//$("#All").show();
									$("#footerlayer").show();
									
									setTimeout("fadeinSides()",10);
									
									});
	
	
  });
	
}





 
 
 function fadeinSides(){

var Layers = new Array('hedder1','footerlayer','MainContainer3','MainContainer','All','MainContainer2')

	

		for (i = 0; i < Layers.length; i++) {
			
				 
				// $("#"+Layers[i]+"").css("backgroundImage","url("+this_image_url+")");
				 
				
			$("#"+Layers[i]+"").fadeIn(1500);

	}

	setTimeout("fadeinContent();",700)
	 }
 

 function fadeinSides2(){
//$("#All").show();
$("#footerlayer").show();


var Layers = new Array('hedder1','footerlayer','MainContainer3','MainContainer','All','MainContainer2')

	
		for (i = 0; i < Layers.length; i++) {
			
				
			$("#"+Layers[i]+"").fadeIn(1500);

	}

	setTimeout("fadeinContent();",700)
	 }
 
function fadeinContent(){
	
	$("#Barcode").css("backgroundImage","url('Image/barAll1.gif')");
    $("#ByEnglish").css("backgroundImage","url('Image/ByEng1.gif')");
    $("#ByArabic").css("backgroundImage","url('Image/ByAra1.gif')");
	


var Layers = new Array('MainContainer_E2','VistTL','VistTC','VistTR','VistBL','VistBC','VistBR','CopyRight','Barcode','ByEnglish','ByArabic','A1','A2','A3','A4','A5')

	
		for (i = 0; i < Layers.length; i++) {
			
				
			$("#"+Layers[i]+"").fadeIn(1500);

	}
	
   // $("#MainContainer_E2").fadeIn(1500);


}



