<!--
var theImages = new Array() 

theImages[0] = 'banners/01.jpg'
theImages[1] = 'banners/02.jpg'
theImages[2] = 'banners/03.jpg'
theImages[3] = 'banners/04.jpg'
theImages[4] = 'banners/05.jpg'
theImages[5] = 'banners/06.jpg'
theImages[6] = 'banners/07.jpg'
theImages[7] = 'banners/08.jpg'
theImages[8] = 'banners/09.jpg'
theImages[9] = 'banners/10.jpg'
theImages[10] = 'banners/11.jpg'
theImages[11] = 'banners/12.jpg'
theImages[12] = 'banners/13.jpg'
theImages[13] = 'banners/14.jpg'
theImages[14] = 'banners/15.jpg'
theImages[15] = 'banners/16.jpg'
theImages[16] = 'banners/17.jpg'
theImages[17] = 'banners/18.jpg'
theImages[18] = 'banners/19.jpg'
theImages[19] = 'banners/20.jpg'
theImages[20] = 'banners/21.jpg'
theImages[21] = 'banners/22.jpg'
theImages[22] = 'banners/23.jpg'
theImages[23] = 'banners/24.jpg'
theImages[24] = 'banners/25.jpg'
theImages[25] = 'banners/26.jpg'
theImages[26] = 'banners/27.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="layout/'+theImages[whichImage]+'">');
}
//-->
