<!-- 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] = 'img/random/01.gif'
theImages[1] = 'img/random/02.gif'
theImages[2] = 'img/random/03.gif'
theImages[3] = 'img/random/04.gif'
theImages[4] = 'img/random/05.gif'
theImages[5] = 'img/random/06.gif'
theImages[6] = 'img/random/07.gif'
theImages[7] = 'img/random/08.gif'
theImages[8] = 'img/random/09.gif'
theImages[9] = 'img/random/10.gif'
theImages[10] = 'img/random/11.gif'
theImages[11] = 'img/random/12.gif'
theImages[12] = 'img/random/13.gif'
theImages[13] = 'img/random/14.gif'
theImages[14] = 'img/random/15.gif'

// 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 -->