<!-- Begin
var theImages = new Array()

theImages[0] = '_headerimages/title01.jpg'
theImages[1] = '_headerimages/title02.jpg'
theImages[2] = '_headerimages/title03.jpg'
theImages[3] = '_headerimages/title04.jpg'
theImages[4] = '_headerimages/title05.jpg'
theImages[5] = '_headerimages/title06.jpg'
theImages[6] = '_headerimages/title07.jpg'
theImages[7] = '_headerimages/title08.jpg'
theImages[8] = '_headerimages/title09.jpg'
theImages[9] = '_headerimages/title10.jpg'
theImages[10] = '_headerimages/title11.jpg'
theImages[11] = '_headerimages/title12.jpg'
theImages[12] = '_headerimages/title13.jpg'
theImages[13] = '_headerimages/title14.jpg'
theImages[14] = '_headerimages/title15.jpg'
theImages[15] = '_headerimages/title16.jpg'
theImages[16] = '_headerimages/title17.jpg'
theImages[17] = '_headerimages/title18.jpg'
theImages[18] = '_headerimages/title19.jpg'
theImages[19] = '_headerimages/title20.jpg'
theImages[20] = '_headerimages/title21.jpg'
theImages[21] = '_headerimages/title22.jpg'
theImages[22] = '_headerimages/title23.jpg'
theImages[23] = '_headerimages/title24.jpg'
theImages[24] = '_headerimages/title25.jpg'
theImages[25] = '_headerimages/title26.jpg'
theImages[26] = '_headerimages/title27.jpg'
theImages[27] = '_headerimages/title28.jpg'
theImages[28] = '_headerimages/title29.jpg'
theImages[29] = '_headerimages/title30.jpg'
theImages[30] = '_headerimages/title31.jpg'
theImages[31] = '_headerimages/title32.jpg'
theImages[32] = '_headerimages/title33.jpg'
theImages[33] = '_headerimages/title34.jpg'
theImages[34] = '_headerimages/title35.jpg'
theImages[35] = '_headerimages/title36.jpg'
theImages[36] = '_headerimages/title37.jpg'
theImages[37] = '_headerimages/title38.jpg'
theImages[38] = '_headerimages/title39.jpg'
theImages[39] = '_headerimages/title40.jpg'

// do not edit 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 border="0" src="'+theImages[whichImage]+'">');
}

//  End -->