 
var theImages = new Array()          // <!-- random images
theImages[0] = '../images/slide_21.jpg'
theImages[1] = '../images/slide_22.jpg'
theImages[2] = '../images/slide_23.jpg'
theImages[3] = '../images/slide_24.jpg'
theImages[4] = '../images/slide_25.jpg'
theImages[5] = '../images/slide_26.jpg'
theImages[6] = '../images/slide_27.jpg'
theImages[7] = '../images/slide_28.jpg'
theImages[8] = '../images/slide_29.jpg'
theImages[9] = '../images/slide_30.jpg'
theImages[10] ='../images/slide_11.jpg'
theImages[11] ='../images/slide_12.jpg'
theImages[12] ='../images/slide_13.jpg'
theImages[13] ='../images/slide_14.jpg'
theImages[14] ='../images/slide_15.jpg'
theImages[15] ='../images/slide_16.jpg'
theImages[16] ='../images/homepage10.gif'   //  switch this one
theImages[17] ='../images/slide_18.jpg'
theImages[18] ='../images/slide_19.jpg'
theImages[19] ='../images/slide_20.jpg'
theImages[20] ='../images/slide_01.jpg'
theImages[21] ='../images/slide_02.jpg'
theImages[22] ='../images/homepage10.gif'
theImages[23] ='../images/slide_03.jpg'
theImages[24] ='../images/slide_04.jpg'
theImages[25] ='../images/slide_05.jpg'
theImages[26] ='../images/slide_06.jpg'
theImages[27] ='../images/slide_07.jpg'
theImages[28] ='../images/slide_08.jpg'
theImages[29] ='../images/slide_09.jpg'
theImages[30] ='../images/slide_10.jpg'
theImages[31] ='../images/slide_31.jpg'
theImages[32] ='../images/slide_32.jpg'
theImages[33] ='../images/slide_33.jpg'
theImages[34] ='../images/homepage10-8.gif'
theImages[35] ='../images/homepage10-7.gif'
theImages[36] ='../images/homepage10-6.gif'
theImages[37] ='../images/homepage10-5.gif'
theImages[38] ='../images/homepage10-4.gif'
theImages[39] ='../images/homepage10-3.gif'
theImages[40] ='../images/homepage10-2.gif'
theImages[41] ='../images/homepage10-1.gif'
theImages[42] ='../images/homepage10-0.gif'// remove these one at a time - from 42 to 34
                                        


// ======================================
// do not change anything below this line
// ======================================

var j = 0
var p = theImages.length;

var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theImages[i]
}

var whichImage = Math.round(Math.random()*(p-1));
function showImage(){
document.write('<img src="'+theImages[whichImage]+'" alt="Click photo to go to our 2010-2011 Performance Season page" border="0" width="266" height="93" align="right">');
}

//-->

/*

// <!-- random images
var theImageH = new Array() 
theImageH[0] = '../academy/academy_photos/acad_side-01.jpg'
theImageH[1] = '../academy/academy_photos/acad_side-02.jpg'
theImageH[2] = '../academy/academy_photos/acad_side-03.jpg'
theImageH[3] = '../academy/academy_photos/acad_side-04.jpg'

// ======================================
// do not change anything below this line
// ======================================

var j = 0
var p = theImageH.length;

var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theImageH[i]
}

var whichImageH = Math.round(Math.random()*(p-1));
function showImageH(){
document.write('<img src="'+theImageH[whichImageH]+'" alt="Fun at the Academy" border="0" width="198" height="222" align="center">');
}


*/
//-->
