//set image paths
src = ["images/home-scrolling/image1.jpg", "images/home-scrolling/image2.jpg", 
	   "images/home-scrolling/image3.jpg", "images/home-scrolling/image4.jpg",
	   "images/home-scrolling/image5.jpg", "images/home-scrolling/image6.jpg", 
	   "images/home-scrolling/image7.jpg", "images/home-scrolling/image8.jpg"]

//set corresponding urls
url = ["#", "#", "#", "#", "#", "#", "#", "#"]

//set duration for each image
duration = 4;

//Please do not edit below
ads=[]; 
ct=0;
function switchAd() 
{
	var n=(ct+1)%src.length;
	if (ads[n] && (ads[n].complete || ads[n].complete==null)) 
	{
		document["image"].src = ads[ct=n].src;
	}
	ads[n=(ct+1)%src.length] = new Image;
	ads[n].src = src[n];
	setTimeout("switchAd()",duration*1000);
	}
	function doLink(){
	location.href = url[ct];
} 
onload = function()
{
	if (document.images)
	switchAd();
}
