//set image paths src = ["http://image.americanhomeguides.com/cgi-bin/imagemgr/get_image?image=9288155a4ef1988acebaef1b3f9d5f05", "http://image.americanhomeguides.com/cgi-bin/imagemgr/get_image?image=6047cd9e4fb230409db76820d7a02bb7", "http://image.americanhomeguides.com/cgi-bin/imagemgr/get_image?image=b8e129c7ceb6875077f81e4984a95893"] //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(); }