// JavaScript Document
/*
Script by FPMC at http://jsarchive.8m.com
Submitted to JavaScript Kit (http://javascriptkit.com)
For this and 400+ free scripts, visit http://javascriptkit.com
*/

//set image paths
src = ["images/sponsors/IMG_6065.jpg", "images/sponsors/tcbc.gif", "images/sponsors/tsf.gif", "images/sponsors/sand.gif" ,  "images/sponsors/jwconst.gif" , "images/sponsors/cocbistro.gif", "images/sponsors/TWA.gif" , "images/sponsors/saunders.gif" , "images/sponsors/gans.gif" , "images/sponsors/gracebaycar.gif" , "images/sponsors/regent.gif" ]


//set corresponding urls
url = ["#", "http://www.turksandcaicos-banking.com/", "http://www.turksandcaicosstarfoundation.org/", "http://www.thesandsresort.com/",  "http://www.jwconstruction.tc" , "http://www.cocobistro.tc/" , "http://www.twamarcelinwolf.com/" , "http://www.tciattorneys.com/" , "http://www.gansevoortturksandcaicos.com/" , "http://www.gracebaycarrentals.com/" , "http://www.regenthotels.com/providenciales-hotel-tc/tcturks" ]

//set duration for each image
duration = 4;

//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();
}
