<!--

//*****************************************
// Blending Image Slide Show Script- 
// Â© Dynamic Drive (www.dynamicdrive.com)
// For full source code, visit http://www.dynamicdrive.com/
//*****************************************

//specify interval between slide (in mili seconds)
var slidespeed=6000

//specify images
var slideimages=new Array("http://web.taftcollege.edu/athletics/baseball/images/index_image.jpg","http://web.taftcollege.edu/athletics/baseball/images/100_1095.jpg","http://web.taftcollege.edu/athletics/baseball/images/large/field_6.jpg","http://web.taftcollege.edu/athletics/baseball/images/100_0492.jpg","http://web.taftcollege.edu/athletics/baseball/images/100_0493.jpg","http://web.taftcollege.edu/athletics/baseball/images/100_1105.jpg","http://web.taftcollege.edu/athletics/baseball/images/100_0494.jpg","http://web.taftcollege.edu/athletics/baseball/images/100_0495.jpg","http://web.taftcollege.edu/athletics/baseball/images/100_0496.jpg","http://web.taftcollege.edu/athletics/baseball/images/100_0497.jpg","http://web.taftcollege.edu/athletics/baseball/images/100_1120.jpg","http://web.taftcollege.edu/athletics/baseball/images/100_1121.jpg","http://web.taftcollege.edu/athletics/baseball/images/100_1122.jpg","http://web.taftcollege.edu/athletics/baseball/images/100_0503.jpg","http://web.taftcollege.edu/athletics/baseball/images/100_0717.jpg","http://web.taftcollege.edu/athletics/baseball/images/100_1129.jpg","http://web.taftcollege.edu/athletics/baseball/images/100_0719.jpg","http://web.taftcollege.edu/athletics/baseball/images/100_0720.jpg","http://web.taftcollege.edu/athletics/baseball/images/100_1132.jpg", "http://web.taftcollege.edu/athletics/baseball/images/100_0721.jpg","http://web.taftcollege.edu/athletics/baseball/images/100_0727.jpg","http://web.taftcollege.edu/athletics/baseball/images/100_0728.jpg","http://web.taftcollege.edu/athletics/baseball/images/100_0729.jpg","http://web.taftcollege.edu/athletics/baseball/images/large/field_7.jpg","http://web.taftcollege.edu/athletics/baseball/images/large/field_8.jpg","http://web.taftcollege.edu/athletics/baseball/images/large/field_9.jpg")

//specify corresponding links
var slidelinks=new Array("http://www.taftcollege.edu/newTC/Community/index.html","http://www.taftcollege.edu/newTC/Community/index.html","http://www.taftcollege.edu/newTC/Community/index.html")

var newwindow=1 //open links in new window? 1=yes, 0=no

var imageholder=new Array()
var ie=document.all
for (i=0;i<slideimages.length;i++){
imageholder[i]=new Image()
imageholder[i].src=slideimages[i]
}

function gotoshow(){
if (newwindow)
window.open(slidelinks[whichlink])
else
window.location=slidelinks[whichlink]
}

//-->