

function loadpage() { 
index1 = 0;
listofimages = new Array(7);
listofimages[0] = new Image(468,60)
listofimages[0].src = "/2006/1.jpg"
listofimages[1] = new Image(468,60)
listofimages[1].src = "/2006/2.jpg"
listofimages[2] = new Image(468,60)
listofimages[2].src = "/2006/3.jpg"
listofimages[3] = new Image(360,30)
listofimages[3].src = "/2006/4.jpg"
listofimages[4] = new Image(468,60)
listofimages[4].src = "/2006/5.jpg"
listofimages[5] = new Image(468,60)
listofimages[5].src = "/2006/6.jpg"
listofimages[6] = new Image(468,60)
listofimages[6].src = "/2006/7.jpg"
listofimages[7] = new Image(468,60)
listofimages[7].src = "/2006/8.jpg"



thetimer = setTimeout("changeimage()", 15000);

} 

function changeimage(){ 
index1 = index1 + 1
if (index1 == "8") { 
index1 = 0 
} 
imagesource = listofimages[index1].src
window.document.banner1.src = imagesource

thetimer = setTimeout("changeimage()", 14500);

} 


 
function changepage() { 
if (index1 == 0) { 
newlocation = "http://www.soyat.org/events.shtml" 
}
else if (index1 == 1) { 
newlocation = "http://www.soyat.org/events.shtml" 
}
else if (index1 == 2) { 
newlocation = "http://www.soyat.org/" 
}
else if (index1 == 3) { 
newlocation = "http://www.soyat.org/"
}
else if (index1 == 4) { 
newlocation = "http://www.soyat.org/" 
}
else if (index1 == 5) { 
newlocation = "http://www.soyat.org/" 
}
else if (index1 == 6) { 
newlocation = "http://www.soyat.org/" 
}
else if (index1 == 7) { 
newlocation = "http://www.soyat.org/" 
}

location = newlocation 
} 


