<!-- Begin

var theImages1 = new Array() 

theImages1[0] = 'banner.jpg'
theImages1[1] = 'banner1.jpg'

// do not edit anything below this line

var j = 0
var q = theImages1.length;
var preBuffer = new Array()
for (s = 0; s < q; s++){
   preBuffer[s] = new Image()
   preBuffer[s].src = theImages1[s]
}
var whichImage1 = Math.round(Math.random()*(q-1));
function showBanner(){
document.write('<img src="images/'+theImages1[whichImage1]+'" alt="Banner" height="200" width="100%">');
}

//  End -->
