

var theImg = new Array() // do not change this
// To add more image files, continue with the
// pattern below, adding to the array.

theImg[0] = 'images/qt2.jpg'
theImg[1] = 'images/qt3.jpg'
theImg[2] = 'images/qt4.jpg'
theImg[3] = 'images/qt5.jpg'
theImg[4] = 'images/qt6.jpg'
theImg[5] = 'images/qt9.jpg'
theImg[6] = 'images/qt3.jpg'
theImg[7] = 'images/qt9.jpg'
theImg[8] = 'images/qt10.jpg'
// do not edit anything below this line

var j = 0
var p = theImg.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theImg[i]
}
var whichImg2 = Math.round(Math.random()*(p-1));
function showImage(){
document.write('<img src="'+theImg[whichImg2]+'">');

}

//  End -->


