
// 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] = 'jw_h_photo01.jpg'
theImages[1] = 'jw_h_photo02.jpg'
theImages[2] = 'jw_h_photo03.jpg'
theImages[3] = 'jw_h_photo04.jpg'
theImages[4] = 'jw_h_photo05.jpg'
theImages[5] = 'jw_h_photo06.jpg'
theImages[6] = 'jw_h_photo07.jpg'
theImages[7] = 'jw_h_photo08.jpg'
theImages[8] = 'jw_h_photo09.jpg'
theImages[9] = 'jw_h_photo10.jpg'
theImages[10] = 'jw_h_photo11.jpg'


// do not edit anything below this line except the image string.

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="images/'+theImages[whichImage]+'" width="178" height="178" alt="" border="0" />');
}


