
// 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] = '../pantherimage/side01.jpg'
theImages[1] = '../pantherimage/side02.jpg'
theImages[2] = '../pantherimage/side03.jpg'
theImages[3] = '../pantherimage/side04.jpg'
theImages[4] = '../pantherimage/side05.jpg'
theImages[5] = '../pantherimage/side06.jpg'
theImages[6] = '../pantherimage/side07.jpg'
theImages[7] = '../pantherimage/side08.jpg'
theImages[8] = '../pantherimage/side09.jpg'
theImages[9] = '../pantherimage/side10.jpg'
theImages[10] = '../pantherimage/side11.jpg'
theImages[11] = '../pantherimage/side12.jpg'
theImages[12] = '../pantherimage/side13.jpg'
theImages[13] = '../pantherimage/side14.jpg'
theImages[14] = '../pantherimage/side15.jpg'
theImages[15] = '../pantherimage/side16.jpg'
theImages[16] = '../pantherimage/side17.jpg'
theImages[17] = '../pantherimage/side18.jpg'
theImages[18] = '../pantherimage/side19.jpg'
theImages[19] = '../pantherimage/side20.jpg'
theImages[20] = '../pantherimage/side21.jpg'
theImages[21] = '../pantherimage/side22.jpg'
theImages[22] = '../pantherimage/side23.jpg'
theImages[23] = '../pantherimage/side24.jpg'
theImages[24] = '../pantherimage/side25.jpg'
theImages[25] = '../pantherimage/side26.jpg'
theImages[26] = '../pantherimage/side27.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]+'">');
}
