

var theImages = new Array() // do not change this


theImages[0] = 'images/vert01.gif'
theImages[1] = 'images/vert02.gif'
theImages[2] = 'images/vert03.gif'
theImages[3] = 'images/vert04.gif'
theImages[4] = 'images/vert05.gif'
theImages[5] = 'images/vert06.gif'
theImages[6] = 'images/vert07.gif'
theImages[7] = 'images/vert08.gif'
theImages[8] = 'images/vert09.gif'
theImages[9] = 'images/vert10.gif'
theImages[10] = 'images/vert11.gif'
theImages[11] = 'images/vert12.gif'
theImages[12] = 'images/vert13.gif'
theImages[13] = 'images/vert14.gif'
theImages[14] = 'images/vert15.gif'
theImages[15] = 'images/vert16.gif'
theImages[16] = 'images/vert17.gif'
theImages[17] = 'images/vert18.gif'
theImages[18] = 'images/vert19.gif'
theImages[20] = 'images/vert20.gif'
theImages[21] = 'images/vert21.gif'
theImages[22] = 'images/vert22.gif'
theImages[23] = 'images/vert23.gif'
theImages[24] = 'images/vert24.gif'
theImages[25] = 'images/vert25.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]+'" border="0">');
}

//  End -->

