
<!-- Begin
// Set up the image files to be used.
var theImages = new Array() // do not change this
// To add more image files, continue with the
// pattern below, adding to the array.

theImages[0] = '/images/headerImages/header01.jpg'
theImages[1] = '/images/headerImages/header02.jpg'
theImages[2] = '/images/headerImages/header03.jpg'
theImages[3] = '/images/headerImages/header04.jpg'
theImages[4] = '/images/headerImages/header05.jpg'
theImages[5] = '/images/headerImages/header06.jpg'
theImages[6] = '/images/headerImages/header07.jpg'
theImages[7] = '/images/headerImages/header08.jpg'
theImages[8] = '/images/headerImages/header09.jpg'
theImages[9] = '/images/headerImages/header10.jpg'
theImages[10] = '/images/headerImages/header11.jpg'
theImages[11] = '/images/headerImages/header12.jpg'
theImages[12] = '/images/headerImages/header13.jpg'
theImages[13] = '/images/headerImages/header14.jpg'
theImages[14] = '/images/headerImages/header15.jpg'
theImages[15] = '/images/headerImages/header16.jpg'
theImages[16] = '/images/headerImages/header17.jpg'
theImages[17] = '/images/headerImages/header18.jpg'
theImages[18] = '/images/headerImages/header19.jpg'
theImages[19] = '/images/headerImages/header20.jpg'
theImages[20] = '/images/headerImages/header21.jpg'
theImages[21] = '/images/headerImages/header22.jpg'
theImages[22] = '/images/headerImages/header23.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 src="'+theImages[whichImage]+'">');
}





























