// 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] = 'header-image1.jpg'
theImages[1] = 'header-image2.jpg'
theImages[2] = 'header-image3.jpg'
theImages[3] = 'header-image4.jpg'
theImages[4] = 'header-image5.jpg'
theImages[5] = 'header-image6.jpg'
theImages[6] = 'header-image7.jpg'
theImages[7] = 'header-image8.jpg'
theImages[8] = 'header-image9.jpg'
theImages[9] = 'header-image10.jpg'
theImages[10] = 'header-image11.jpg'
theImages[11] = 'header-image12.jpg'
theImages[11] = 'header-image13.jpg'
theImages[11] = 'header-image14.jpg'
theImages[11] = 'header-image15.jpg'
theImages[11] = 'header-image16.jpg'
theImages[11] = 'header-image17.jpg'
theImages[11] = 'header-image18.jpg'
theImages[11] = 'header-image19.jpg'
theImages[11] = 'header-image20.jpg'
theImages[11] = 'header-image21.jpg'
theImages[11] = 'header-image22.jpg'
theImages[11] = 'header-image23.jpg'
theImages[11] = 'header-image24.jpg'
theImages[11] = 'header-image25.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 lowsrc="images/header-image-lowsrc.gif" width=685 height=155 src="images/'+theImages[whichImage]+'">');
}
