// JavaScript Document
<!-- 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] = '../../imagesr/img00.jpg'
theImages[1] = '../../imagesr/img01.jpg'
theImages[2] = '../../imagesr/img02.jpg'
theImages[3] = '../../imagesr/img03.jpg'
theImages[4] = '../../imagesr/img04.jpg'
theImages[5] = '../../imagesr/img05.jpg'
theImages[6] = '../../imagesr/img06.jpg'
theImages[7] = '../../imagesr/img07.jpg'
theImages[8] = '../../imagesr/img08.jpg'
theImages[9] = '../../imagesr/img09.jpg'
theImages[10] = '../../imagesr/img10.jpg'
theImages[11] = '../../imagesr/img11.jpg'
theImages[12] = '../../imagesr/img12.jpg'
theImages[13] = '../../imagesr/img13.jpg'
theImages[14] = '../../imagesr/img14.jpg'
theImages[15] = '../../imagesr/img15.jpg'
theImages[16] = '../../imagesr/img16.jpg'
theImages[17] = '../../imagesr/img17.jpg'
theImages[18] = '../../imagesr/img18.jpg'
theImages[19] = '../../imagesr/img19.jpg'
theImages[20] = '../../imagesr/img20.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]+'">');
}

//  End -->