//set image paths
src = ["/image/users/130219/ftp/my_files/Home/1.jpg", "/image/users/130219/ftp/my_files/Home/2.jpg", "/image/users/130219/ftp/my_files/Home/3.jpg", "/image/users/130219/ftp/my_files/Home/4.jpg"]
//set duration for each image
duration = 6;
//Please do not edit below
ads=[]; ct=0; iStart=0;
function switchAd() 
{
	var n=(ct+1)%src.length;
	if (ads[n] && (ads[n].complete || ads[n].complete==null)) 
	{
		document.getElementById("Ad_Image").style.background = "url(" + ads[ct=n].src + ") no-repeat center 50%";
	}
	ads[n=(ct+1)%src.length] = new Image;
	ads[n].src = src[n];
	setTimeout("switchAd()",duration*1000);
}

function DemarreManu()
{
	if (iStart==0)
	{ 
		iStart = 1;
		if (document.images)
		{
			switchAd();
		}
	}
}
 
//window.onmousemove = mousemoved; 
//function mousemoved()
//{
//	if (iStart==0){ 
//	iStart = 1;
//	switchAd();
//	alert("mousemove event detected!");
//	}
//window.onmousemove='void(0)';
//}
//}


//onload = function()
//{
//	if (document.images)
//		switchAd();
//}
