// JavaScript Document
var aImages = new Array();
var imgIndex=0;
var objLayer;
var cnt;

function preLoadImage(imgSrc) {
	aImages[imgIndex] = new Image();
	aImages[imgIndex].src = imgSrc;
	imgIndex++;
}

function preLoadImages() {
	//objLayer = document.getElementById(preLoadImages.arguments[0]);
	//objLayer.style.visibility = "hidden";
	
	cnt = preLoadImages.arguments.length;
	//alert("Total "+cnt+" images to load;");
	for (i=0;i<preLoadImages.arguments.length;i++){
		//alert("Load "+preLoadImages.arguments[i]);
		aImages[imgIndex]=new Image()
		aImages[imgIndex].src=preLoadImages.arguments[i];
		//aImages[imgIndex].onload = callbackLoadImage;
		imgIndex++;
	}
}
function callbackLoadImage() {
	cnt--;
	//alert(cnt+" images to load");
	if (cnt <= 0)
		objLayer.style.visibility = "visible";
}


preLoadImages(
"../images/landing/info_top_1.jpg",
"../images/landing/info_top_2.jpg",
"../images/landing/info_top_3.jpg",
"../images/but_topcheckout_on.png",
"../images/landing/but_small_in.png",
"../images/landing/but_small_on.png",
"../images/landing/but_medium.png",
"../images/landing/but_medium_on.png",
"../images/landing/but_large_in.png",
"../images/landing/but_large_on.png",
"../images/landing/but_ai_personalizeit_on.png",
"../images/landing/but_ai_addtocart_on.png",
"../images/landing/Calendar/fedex.png",
"../images/landing/Calendar/order_received.jpg",
"../images/landing/Calendar/order_received_ref.jpg",
"../images/landing/Calendar/order_shipped.jpg",
"../images/landing/Calendar/production.jpg",
"../images/landing/Calendar/shipping.jpg",
"../images/landing/Calendar/order_delivered.jpg",
"../images/landing/Calendar/order_express.jpg",
"../images/landing/Calendar/order_express_shipped.jpg",
"../images/landing/Calendar/proof_review.jpg",
"../images/landing/Calendar/wknum_bg.png",
"../images/landing/more_pastor_gifts_on.png",
"../images/landing/more_anniv_gifts_on.jpg",
"../images/landing/more_teacher_gifts_on.jpg"
);

