//set image paths src = ["http://image.americanhomeguides.com/metro/nho/community/CentralFlorida/009567_p02.jpg", "http://image.americanhomeguides.com/metro/nho/community/CentralFlorida/009567_pm01.jpg", "http://image.americanhomeguides.com/cgi-bin/imagemgr/get_image?image=e20b186327d0365a8d7caae715a19a57", "http://image.americanhomeguides.com/cgi-bin/imagemgr/get_image?image=81d0921844c71ae5c0eda4a8f0c1c79c"] //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(); }