<!--
src = ["image1.jpg", "image2.jpg", "image13.jpg", "image11.jpg", "image5.jpg", "image6.jpg", "image7.jpg", "image10.jpg", "image9.jpg", "image8.jpg", "image4.jpg", "image12.jpg", "image3.jpg"]
url = [""]
duration = 3;

ads=[]; ct=0;
function switchAd() {
var n=(ct+1)%src.length;
if (ads[n] && (ads[n].complete || ads[n].complete==null)) {
document["Ad_Image"].src = ads[ct=n].src;
}
ads[n=(ct+1)%src.length] = new Image;
ads[n].src = src[n];
setTimeout("switchAd()",duration*1000);
}
function doLink(){
location.href = url[ct];
} onload = function(){
if (document.images)
switchAd();
}
//-->


