/*
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 ... no comma at end
src = ["slideshow/slide_1.jpg", "slideshow/slide_2.jpg", "slideshow/slide_3.jpg", "slideshow/slide_6.jpg", "slideshow/slide_4.jpg", "slideshow/slide_5.jpg"]

//set corresponding urls ... no comma at end  ... celebration/index.htm
url = ["technology_minigrants.html", "e-gov_wv.html", "wv_small_colleges.html", "deer_farms.html", "neighborhood_wireless.html", "leadership_development.html"]

//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();
}

