imagePath = "http:www.verdesolutions.org/repspark/img/customers/";
//set image paths
src = ["lspace.gif,liquid.gif,sanuk.gif"]

//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["customer_image"].src = ads[ct=n].src;
	}

	ads[n=(ct+1)%src.length] = new Image;
	ads[n].src = imagePath + src[n];
	setTimeout("switchAd()",duration*1000);
}


switchAd();