<!-- begin
//Script by FPMC at http://jsarchive.8m.com
src = ["image/Keukenhof.jpg", "image/Toledo.jpg", "image/Mezquita.jpg", "image/Shanghai.jpg"]
url = ["Keukenhof/index.php", "Toledo/index.php", "Mezquita/index.php", "Shanghai/index.php"]
duration = 3;
//do not edit
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();
}
// End -->

