var ImgIdx = 1;//To mark which image will be select next
	var ListEffect = [	[""],
						["ScrollIn", "ScrollOut", "ScrollIn", "ScrollOut", "ScrollIn"],
						["TopDown", "LeftRight", "DownTop","TopDown", "LeftRight",]];
	function PreloadImg(){
		$.ImagePreload("images/home/home-recent-1.jpg");
		$.ImagePreload("images/home/home-recent-2.jpg");
		$.ImagePreload("images/home/home-recent-3.jpg");
		$.ImagePreload("images/home/home-recent-4.jpg");
		$.ImagePreload("images/home/home-recent-5.jpg");
	}
	
	var StartAds = function(){
		$("#Description").animate({"top": "-20px"},500,function(){
			if(!$("#Ads").ImageAnimating()){
				$("#Ads").ImageSwitch({	Type:ListEffect[1][ImgIdx], 
										NewImage:"images/home/home-recent-"+(ImgIdx+1)+".jpg",
										Direction: ListEffect[2][ImgIdx],
										StartOpacity: 1,
										EndOpacity: 1,
										Speed: 500
										},function(){
											$("#Description").html(ListEffect[0][ImgIdx]);
											ImgIdx++;
											if(ImgIdx>4) ImgIdx = 0;												
										});												
			}
		});
	}		
	
	$(document).ready(function(){
		PreloadImg();
		setInterval(StartAds,3000);
	});
