// Set up the image files to be used.
var theImages1 = new Array() // do not change this
// To add more image files, continue with the
// pattern below, adding to the array.

theImages1[0] = 'banner-01.jpg';
theImages1[1] = 'banner-02.jpg';
theImages1[2] = 'banner-03.jpg';
theImages1[3] = 'banner-04.jpg';
theImages1[4] = 'banner-05.jpg';
theImages1[5] = 'banner-06.jpg';
theImages1[6] = 'banner-07.jpg';
theImages1[7] = 'banner-08.jpg';
theImages1[8] = 'banner-09.jpg';
theImages1[9] = 'banner-10.jpg';
theImages1[10] = 'banner-11.jpg';
theImages1[11] = 'banner-12.jpg';
theImages1[12] = 'banner-13.jpg';
theImages1[13] = 'banner-14.jpg';
theImages1[14] = 'banner-15.jpg';
theImages1[15] = 'banner-16.jpg';
theImages1[16] = 'banner-17.jpg';
theImages1[17] = 'banner-18.jpg';
theImages1[18] = 'banner-19.jpg';
theImages1[19] = 'banner-20.jpg';
theImages1[20] = 'banner-21.jpg';
theImages1[21] = 'banner-22.jpg';
theImages1[22] = 'banner-24.jpg';
theImages1[23] = 'banner-25.jpg';
theImages1[24] = 'banner-26.jpg';
theImages1[25] = 'banner-27.jpg';
theImages1[26] = 'banner-28.jpg';
theImages1[27] = 'banner-29.jpg';
theImages1[28] = 'banner-30.jpg';
theImages1[29] = 'banner-31.jpg';
theImages1[30] = 'banner-32.jpg';
theImages1[31] = 'banner-33.jpg';
theImages1[32] = 'banner-34.jpg';
theImages1[33] = 'banner-35.jpg';
theImages1[34] = 'banner-36.jpg';
theImages1[35] = 'banner-37.jpg';
theImages1[36] = 'banner-38.jpg';
theImages1[37] = 'banner-39.jpg';
theImages1[38] = 'banner-40.jpg';
theImages1[39] = 'banner-41.jpg';
theImages1[40] = 'banner-42.jpg';
theImages1[41] = 'banner-42.jpg';
theImages1[42] = 'banner-42.jpg';
theImages1[43] = 'banner-45.jpg';
theImages1[44] = 'banner-46.jpg';
theImages1[45] = 'banner-47.jpg';
theImages1[46] = 'banner-48.jpg';
theImages1[47] = 'banner-49.jpg';
theImages1[48] = 'banner-49.jpg';
theImages1[49] = 'banner-51.jpg';
theImages1[50] = 'banner-52.jpg';
theImages1[51] = 'banner-53.jpg';
theImages1[52] = 'banner-53.jpg';
theImages1[53] = 'banner-55.jpg';

var j = 0
var p = theImages1.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theImages1[i]
}

var whichImage = Math.round(Math.random()*(p-1));
function showImage1(){
//alert(whichImage)
//alert(theImages1[whichImage]);
document.write('<img src="images/other/'+theImages1[whichImage]+'">');
}
