<!--

/*
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/slideshow/2008-09_Formal_Band_Pic.jpg",
	"/images/slideshow/EagleBand006a.jpg", 
	"/images/slideshow/IMG_0424.JPG", 
	"/images/slideshow/IMG_0482.JPG", 
	"/images/slideshow/IMG_0601.JPG", 
	"/images/slideshow/EagleBand001a.jpg", 
	"/images/slideshow/EagleBand003a.jpg",
	"/images/slideshow/EagleBand005a.jpg" 
	];


//set corresponding urls
url = ["http://www.akinseagleband.org", 
	"http://www.akinseagleband.org", 
	"http://www.akinseagleband.org", 
	"http://www.akinseagleband.org", 
	"http://www.akinseagleband.org", 
	"http://www.akinseagleband.org", 
	"http://www.akinseagleband.org", 
	"http://www.akinseagleband.org"
	];

//set duration for each image
duration = [10,
            10,
						5,
						10,
						10,
						10,
						10,
						10
						];

//Please do not edit below
ads=[]; ct=0;
function switchAd() {
  var n=(ct+1)%src.length;
  //alert(n);
  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[n]*1000);
}
function doLink(){
  location.href = url[ct];
} 
onload = function(){
  if (document.images)
    switchAd();
}
//-->
