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