/*** Preloading Navigation Images ***/
function imagePreload(imgArray){
	if(document.images)
	{
		preload_image_object = new Array();
		var i = 0;
		for(i=0; i<=33; i++) 
		  preload_image_object[i]= new Image();

		// set image url
		image_url = new Array();
		var j = 0;
		for(j=0; j<=33; j++) 
		  image_url[j] = imgArray[j];
		
		var k = 0;
		for(k=0; k<=33; k++) 
		  preload_image_object[k].src = image_url[k];
	}
}
function preloadImgList(){
	var imgArray = new Array();
	imgArray[0] = "http://cdn.promotionexpert.com/activeplay/images/clubhouse.gif";
	imgArray[1] = "http://cdn.promotionexpert.com/activeplay/images/clubhouse_hover.gif";
	imgArray[2] = "http://cdn.promotionexpert.com/activeplay/images/playtracker.gif";
	imgArray[3] = "http://cdn.promotionexpert.com/activeplay/images/playtracker_hover.gif";
	imgArray[4] = "http://cdn.promotionexpert.com/activeplay/images/classicgames.gif";
	imgArray[5] = "http://cdn.promotionexpert.com/activeplay/images/classicgames_hover.gif";
	imgArray[6] = "http://cdn.promotionexpert.com/activeplay/images/makegame.gif";
	imgArray[7] = "http://cdn.promotionexpert.com/activeplay/images/makegame_hover.gif";
	imgArray[8] = "http://cdn.promotionexpert.com/activeplay/images/sweepstakes.gif";
	imgArray[9] = "http://cdn.promotionexpert.com/activeplay/images/sweepstakes_hover.gif";
	imgArray[10] = "http://cdn.promotionexpert.com/activeplay/images/sweeps/faqs.jpg";
	imgArray[11] = "http://cdn.promotionexpert.com/activeplay/images/sweeps/faqs_hover.jpg";
	imgArray[12] = "http://cdn.promotionexpert.com/activeplay/images/sweeps/rules.jpg";
	imgArray[13] = "http://cdn.promotionexpert.com/activeplay/images/sweeps/rules_hover.jpg";
	imgArray[14] = "http://cdn.promotionexpert.com/activeplay/images/sweeps/prize_details.jpg";
	imgArray[15] = "http://cdn.promotionexpert.com/activeplay/images/sweeps/prize_details_hover.jpg";
	imgArray[16] = "http://cdn.promotionexpert.com/activeplay/images/playtracker/tab1.jpg";
	imgArray[17] = "http://cdn.promotionexpert.com/activeplay/images/playtracker/tab1_hover.jpg";
	imgArray[18] = "http://cdn.promotionexpert.com/activeplay/images/playtracker/tab2.jpg";
	imgArray[19] = "http://cdn.promotionexpert.com/activeplay/images/playtracker/tab2_hover.jpg";
	imgArray[20] = "http://cdn.promotionexpert.com/activeplay/images/playtracker/tab3.jpg";
	imgArray[21] = "http://cdn.promotionexpert.com/activeplay/images/playtracker/tab3_hover.jpg";
	imgArray[22] = "http://cdn.promotionexpert.com/activeplay/images/playtracker/times/normal/mts_30.png";
	imgArray[23] = "http://cdn.promotionexpert.com/activeplay/images/playtracker/times/normal/mts_60.png";
	imgArray[24] = "http://cdn.promotionexpert.com/activeplay/images/playtracker/times/normal/mts_90.png";
	imgArray[25] = "http://cdn.promotionexpert.com/activeplay/images/playtracker/times/normal/hrs_2plus.png";
	imgArray[26] = "http://cdn.promotionexpert.com/activeplay/images/playtracker/times/selected/mts_30.png";
	imgArray[27] = "http://cdn.promotionexpert.com/activeplay/images/playtracker/times/selected/mts_60.png";
	imgArray[28] = "http://cdn.promotionexpert.com/activeplay/images/playtracker/times/selected/mts_90.png";
	imgArray[29] = "http://cdn.promotionexpert.com/activeplay/images/playtracker/times/selected/hrs_2plus.png";
	imgArray[30] = "http://cdn.promotionexpert.com/activeplay/images/playtracker/times/unselected/mts_30.png";
	imgArray[31] = "http://cdn.promotionexpert.com/activeplay/images/playtracker/times/unselected/mts_60.png";
	imgArray[32] = "http://cdn.promotionexpert.com/activeplay/images/playtracker/times/unselected/mts_90.png";
	imgArray[33] = "http://cdn.promotionexpert.com/activeplay/images/playtracker/times/unselected/hrs_2plus.png";
	imagePreload(imgArray);
}
/*** End ***/