<!-- Begin
// Set up the image files to be used.
var theImages = new Array() // do not change this
theImages[0] = 'img/0.jpg'
theImages[1] = 'img/1.jpg'
theImages[2] = 'img/2.jpg'
theImages[3] = 'img/3.jpg'
theImages[5] = 'img/5.jpg'
theImages[6] = 'img/6.jpg'
theImages[7] = 'img/7.jpg'
/*theImages[5] = 'img/6.jpg'
theImages[6] = 'img/7.jpg'
theImages[7] = 'img/8.jpg'
theImages[8] = 'img/9.jpg'
theImages[9] = 'img/10.jpg'
theImages[10] = 'img/11.jpg'
theImages[11] = 'img/12.jpg'
theImages[12] = 'img/13.jpg'
theImages[13] = 'img/14.jpg'
theImages[14] = 'img/15.jpg'
theImages[15] = 'img/16.jpg'
theImages[16] = 'img/17.jpg'
theImages[17] = 'img/18.jpg'
theImages[18] = 'img/19.jpg'
theImages[19] = 'img/20.jpg'
theImages[20] = 'img/21.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]+'" width="490" height="420">');
}
//  End -->
	
