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