//set image paths src = ["http://image.americanhomeguides.com/cgi-bin/imagemgr/get_image?image=c4e93183311983eea7c0d2a7f951d3f2", "http://image.americanhomeguides.com/cgi-bin/imagemgr/get_image?image=8a4b275bdff7e837bd201a26f4f8a86e", "http://image.americanhomeguides.com/cgi-bin/imagemgr/get_image?image=95cc2f725c197182a5a68fb4af24ad0b"] //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(); }