//set image paths src = ["http://image.americanhomeguides.com/metro/nho/community/CentralFlorida/015395_p01.jpg", "http://image.americanhomeguides.com/metro/nho/community/CentralFlorida/015395_pm01.jpg", "http://image.americanhomeguides.com/cgi-bin/imagemgr/get_image?image=f28b99ec822c722ab49723d10c2a4af6", "http://image.americanhomeguides.com/cgi-bin/imagemgr/get_image?image=5af4f344f9980c2a9d4c7a0c4eec12c5"] //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(); }