var theImages = new Array()
theImages[0] = 'http://dallasiia.org/Image_09/bannerpics/bannerpic01.jpg'
theImages[1] = 'http://dallasiia.org/Image_09/bannerpics/bannerpic02.jpg'
theImages[2] = 'http://dallasiia.org/Image_09/bannerpics/bannerpic03.jpg'
theImages[3] = 'http://dallasiia.org/Image_09/bannerpics/bannerpic04.jpg'
theImages[4] = 'http://dallasiia.org/Image_09/bannerpics/bannerpic05.jpg'
theImages[5] = 'http://dallasiia.org/Image_09/bannerpics/bannerpic06.jpg'
theImages[6] = 'http://dallasiia.org/Image_09/bannerpics/bannerpic07.jpg'
theImages[7] = 'http://dallasiia.org/Image_09/bannerpics/bannerpic08.jpg'
//theImages[8] = 'http://dallasiia.org/Image_09/bannerpics/bannerpic09.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('<img src="'+theImages[whichImage]+' " alt="Dallas Texas Skyline" style="border-style: solid; border-width: 1px; margin: 0px 0px 5px 0px" />');
}