<!--


//set image paths
src = ["frontslideshow/forsale.jpg", "frontslideshow/barns.jpg", "frontslideshow/courthouse.jpg", "frontslideshow/waterfall.jpg"]


//set corresponding urls
url2 = ["#","#","#","#","#"]

//set duration for each image
duration = 2;

//Please do not edit below
ads=[]; ct=0;
function switchAd() {
var n1=(ct+1)%src.length;
if (ads[n1] && (ads[n1].complete || ads[n1].complete==null)) {
document["Ad_Image"].src = ads[ct=n1].src;
}
ads[n1=(ct+1)%src.length] = new Image;
ads[n1].src = src[n1];
setTimeout("switchAd()",duration*1000);
}
function doLink(){
location.href = url2[ct];
} onload = function(){
if (document.images)
switchAd();
}
//-->
