
//set image paths
src = ["/geo/images/1.jpg", "/geo/images/2.jpg", "/geo/images/3.jpg", "/geo/images/4.jpg", "/geo/images/5.jpg", "/geo/images/6.jpg"]


//set corresponding urls
//url = ["http://freewarejava.com", "http://javascriptkit.com", "http://dynamicdrive.com", "http://www.geocities.com"]

//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["Anim_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];
}
function anim(){
	if (document.images)
		switchAd();
}

