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