<!--
/* Code copyright 2001 http://www.custompro.com, all rights reserved
*/
function displayimage(image, width, height, fullsizeimage, alttext) {
	this.image = image
	this.width = width
	this.height = height
	this.fullsizeimage = fullsizeimage
	this.alttext = alttext
}
imagearray = new Array(34)
imagearray[0] = new displayimage("images/thb/ebb_01.jpg","71","100","ebb_01","Baseball: Coming of Age")
imagearray[1] = new displayimage("images/thb/ebb_03.jpg","121","100","ebb_03","Baseball: Coming of Age")
imagearray[2] = new displayimage("images/thb/ebb_04.jpg","141","100","ebb_04","Baseball: Coming of Age")
imagearray[3] = new displayimage("images/thb/ebb_05.jpg","143","100","ebb_05","Baseball: Coming of Age")
imagearray[4] = new displayimage("images/thb/ebb_06.jpg","72","100","ebb_06","Baseball: Coming of Age")
imagearray[5] = new displayimage("images/thb/ebb_07.jpg","72","100","ebb_07","Baseball: Coming of Age")
imagearray[6] = new displayimage("images/thb/ebb_08.jpg","127","100","ebb_08","Baseball: Coming of Age")
imagearray[7] = new displayimage("images/thb/ebb_09.jpg","127","100","ebb_09","Baseball: Coming of Age")
imagearray[8] = new displayimage("images/thb/ebb_10.jpg","138","100","ebb_10","Baseball: Coming of Age")
imagearray[9] = new displayimage("images/thb/ep_01.jpg","128","100","ep_01","Mom and Dad in the Early Years")
imagearray[10] = new displayimage("images/thb/ep_02.jpg","127","100","ep_02","Mom and Dad in the Early Years")
imagearray[11] = new displayimage("images/thb/ep_03.jpg","79","100","ep_03","Mom and Dad in the Early Years")
imagearray[12] = new displayimage("images/thb/ep_04.jpg","127","100","ep_04","Mom and Dad in the Early Years")
imagearray[13] = new displayimage("images/thb/ep_05.jpg","125","100","ep_05","Mom and Dad in the Early Years")
imagearray[14] = new displayimage("images/thb/ep_06.jpg","128","100","ep_06","Mom and Dad in the Early Years")
imagearray[15] = new displayimage("images/thb/ep_07.jpg","130","100","ep_07","Mom and Dad in the Early Years")
imagearray[16] = new displayimage("images/thb/ep_08.jpg","127","100","ep_08","Mom and Dad in the Early Years")
imagearray[17] = new displayimage("images/thb/ep_09.jpg","128","100","ep_09","Mom and Dad in the Early Years")
imagearray[18] = new displayimage("images/thb/ep_10.jpg","149","100","ep_10","Mom and Dad in the Early Years")
imagearray[19] = new displayimage("images/thb/ep_11.jpg","70","100","ep_11","Mom and Dad in the Early Years")
imagearray[20] = new displayimage("images/thb/grad_01.jpg","152","100","grad_01","Graduation:  Stepping into Tomorrow")
imagearray[21] = new displayimage("images/thb/grad_04.jpg","66","100","grad_04","Graduation:  Stepping into Tomorrow")
imagearray[22] = new displayimage("images/thb/grad_05.jpg","141","100","grad_05","Graduation:  Stepping into Tomorrow")
imagearray[23] = new displayimage("images/thb/rb_01.jpg","66","100","rb_01","High School Baseball:  Building a Legacy")
imagearray[24] = new displayimage("images/thb/rb_09.jpg","108","100","rb_09","High School Baseball:  Building a Legacy")
imagearray[25] = new displayimage("images/thb/rb_10.jpg","104","100","rb_10","High School Baseball:  Building a Legacy")
imagearray[26] = new displayimage("images/thb/rb_11.jpg","77","100","rb_11","High School Baseball:  Building a Legacy")
imagearray[27] = new displayimage("images/thb/ypcc_02.jpg","67","100","ypcc_02","The Bonds of Perpetuity")
imagearray[28] = new displayimage("images/thb/wwt_03.jpg","145","100","wwt_03","Wrestling: The Ultimate Test of Fortitude")
imagearray[29] = new displayimage("images/thb/rsp_08.jpg","64","100","rsp_08","Brendan Forever: How We Remember")
imagearray[30] = new displayimage("images/thb/rsp_09.jpg","64","100","rsp_09","Brendan Forever: How We Remember")
imagearray[31] = new displayimage("images/thb/rsp_10.jpg","148","100","rsp_10","Brendan Forever: How We Remember")
imagearray[32] = new displayimage("images/thb/whsf_01.jpg","68","100","whsf_01","Nothing But High School Smiles")
imagearray[33] = new displayimage("images/thb/whsf_16.jpg","152","100","whsf_16","Nothing But High School Smiles")

function autoimage(alignv) {
index = Math.floor(Math.random() * imagearray.length);
document.write("<a href='javascript:poppix(&quot;" + imagearray[index].alttext + "&quot;,&quot;" + imagearray[index].fullsizeimage + "&quot;)'>");
document.write("<img src=" + imagearray[index].image + " alt='" + imagearray[index].alttext + "'" + " border='1'");  
if (alignv != "") {
	document.write(" align='" + alignv + "'");
} 
document.write(" width='" + imagearray[index].width + "'"	+ " height='" +  imagearray[index].height + "'" + ">");
document.write("</a>")
}

