//set image paths
src = ["../images/GGMS/gandhichantier2.jpg", "../images/GGMS/ggms1.jpg", "../images/GGMS/ggms2.jpg", "../images/GGMS/ggms3.jpg", "../images/GGMS/ggms4.jpg", "../images/GGMS/ggms040502.jpg", "../images/GGMS/ggms040501.jpg", "../images/GGMS/ggms040503.jpg", "../images/GGMS/ChantierGGMS2web.jpg", "../images/GGMS/ChantierGGMS3.JPG", "../images/GGMS/ChantierGGMS13web.jpg", "../images/GGMS/GGMS1web.jpg", "../images/sejour06/IMG_2381.jpg", "../images/sejour06/IMG_2373.jpg", "../images/sejour06/inauguration1.jpg", "../images/sejour06/inauguration2.jpg", "../images/sejour06/inauguration3.jpg", "../images/sejour06/inauguration4.jpg", "../images/sejour06/inauguration5.jpg"]


//set corresponding urls
url = ["ggms/page0.html", "ggms/page2.html", "ggms/page3.html", "ggms/page4.html", "ggms/page5.html", "ggms/page6.html", "ggms/page7.html", "ggms/page8.html", "ggms/page9.html", "ggms/page10.html", "ggms/page14.html", "ggms/page15.html", "ggms/page15a.html", "ggms/page15b.html", "ggms/page16.html", "ggms/page17.html", "ggms/page18.html", "ggms/page19.html", "ggms/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();
}