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