<!--
var theImages = new Array() // do not change this

theImages[0] = 'slide/img1.jpg'
theImages[1] = 'slide/img2.jpg'
theImages[2] = 'slide/img3.jpg'
theImages[3] = 'slide/img4.jpg'
theImages[4] = 'slide/img5.jpg'
theImages[5] = 'slide/img6.jpg'
theImages[6] = 'slide/img7.jpg'
theImages[7] = 'slide/img8.jpg'
theImages[8] = 'slide/img9.jpg'
theImages[9] = 'slide/img10.jpg'
theImages[10] = 'slide/img11.jpg'
theImages[11] = 'slide/img12.jpg'
theImages[12] = 'slide/img13.jpg'
theImages[13] = 'slide/img14.jpg'
theImages[14] = 'slide/img15.jpg'
theImages[15] = 'slide/img16.jpg'
theImages[16] = 'slide/img17.jpg'
theImages[17] = 'slide/img18.jpg'
theImages[18] = 'slide/img19.jpg'
theImages[19] = 'slide/ch2.jpg'
theImages[20] = 'slide/ch3.jpg'
theImages[21] = 'slide/ch4.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]+'">');
}

showImage();
//  End -->