// JavaScript Document
var theImages = new Array() // do not change this 
theImages[0] = '../_banners/1.jpg' 
theImages[1] = '../_banners/2.jpg' 
theImages[2] = '../_banners/3.jpg'
theImages[3] = '../_banners/4.jpg'
theImages[4] = '../_banners/5.jpg'
theImages[5] = '../_banners/6.jpg'
theImages[6] = '../_banners/7.jpg'
theImages[7] = '../_banners/8.jpg'
theImages[8] = '../_banners/9.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'



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('<td height="140" colspan="5" background="'+theImages[whichImage]+'" >') 
}
