/*
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 = ["http://a1410george/images/cru/francisco.jpg", "http://a1410george/images/cru/marjorie.jpg", "http://a1410george/images/cru/arthur.jpg", "http://a1410george/images/cru/sharon.jpg", "http://a1410george/images/cru/carissa.jpg", "http://a1410george/images/cru/elizabeth.jpg", "http://a1410george/images/cru/romina.jpg", "http://a1410george/images/cru/pawel.jpg", "http://a1410george/images/cru/manjula.jpg", "http://a1410george/images/cru/laura.jpg", "http://a1410george/images/cru/william.jpg", "http://a1410george/images/cru/yue.jpg"]


//set corresponding urls
url = ["http://a1410george/contactprofile.html?contactid=1", "http://a1410george/contactprofile.html?contactid=3", "http://a1410george/contactprofile.html?contactid=2", "http://a1410george/contactprofile.html?contactid=4", "http://a1410george/contactprofile.html?contactid=5", "http://a1410george/contactprofile.html?contactid=13", "http://a1410george/contactprofile.html?contactid=6", "http://a1410george/contactprofile.html?contactid=8", "http://a1410george/contactprofile.html?contactid=7", "http://a1410george/contactprofile.html?contactid=12", "http://a1410george/contactprofile.html?contactid=10", "http://a1410george/contactprofile.html?contactid=11"]

//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*500);
}
function doLink(){
location.href = url[ct];
}
function switchmyimages(){
if (document.images)
switchAd();
}

