//set image paths src = ["http://image.americanhomeguides.com/cgi-bin/imagemgr/get_image?image=ca1f1dca2c824383c6e7612c3bcc123b", "http://image.americanhomeguides.com/cgi-bin/imagemgr/get_image?image=1c70f6d664822b9f7579c52c69e94bcf", "http://image.americanhomeguides.com/cgi-bin/imagemgr/get_image?image=098b14dd2f815f9495bc08cc26291e02"] //set duration for each image duration = 3; //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["community_image"].src = ads[ct=n].src; } ads[n=(ct+1)%src.length] = new Image; ads[n].src = src[n]; setTimeout("switchAd()",duration*1000); } onload = function(){ if (document.images) switchAd(); }