//set image paths
src = ["../images/2008/DSC01879_640.JPG", "../images/2008/DSC01886_640.JPG", "../images/2008/DSC01928_640.JPG", "../images/2008/DSC01943_640.JPG", "../images/2008/DSC01976_640.JPG", "../images/2008/DSC02007_640.JPG", "../images/2008/DSC02032_640.JPG", "../images/2008/DSC02040_640.JPG", "../images/2008/DSC02081_640.JPG", "../images/2008/DSC02114_640.JPG", "../images/2008/DSC02158_640.JPG", "../images/2008/DSC02169_640.JPG", "../images/2008/DSC02184_640.JPG", "../images/2008/DSC02187_640.JPG", "../images/2008/DSC02268_640.JPG", "../images/2008/DSC02307_640.JPG", "../images/2008/DSC02315_640.JPG", "../images/2008/DSC02337_640.JPG", "../images/2008/DSC02363_640.JPG", "../images/2008/DSC02376_640.JPG", "../images/2008/DSC02392_640.JPG"]


//set corresponding urls
//url = ["tourisme/page0.html", "tourisme/page1.html", //"tourisme/page2.html", "tourisme/page3.html", //"tourisme/page4.html", "tourisme/page5.html", //"tourisme/page6.html", "tourisme/page7.html", //"tourisme/page8.html", "tourisme/page9.html", //"tourisme/page10.html", "tourisme/page11.html", //"tourisme/page12.html", "tourisme/page13.html", "tourisme/page14.html", "tourisme/pagefin.html"]

//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["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();
}
