<!--


var theImages = new Array()

theImages[0] = 'img1.jpg'
theImages[1] = 'img2.jpg'
theImages[2] = 'img3.jpg'
theImages[3] = 'img4.jpg'
theImages[4] = 'img5.jpg'
theImages[5] = 'img6.jpg'
theImages[6] = 'img7.jpg'
theImages[7] = 'img8.jpg'

var i = 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="header/'+theImages[whichImage]+'"alt="Hill Town Logo"  width="150" height="150">');
}

var theImagesa = new Array()

theImagesa[0] = 'img9.jpg'
theImagesa[1] = 'img10.jpg'
theImagesa[2] = 'img11.jpg'
theImagesa[3] = 'img12.jpg'
theImagesa[4] = 'img13.jpg'
theImagesa[5] = 'img14.jpg'
theImagesa[6] = 'img15.jpg'
theImagesa[7] = 'img16.jpg'

var i = 0
var p = theImagesa.length;

var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theImagesa[i]
}

var whichImage = Math.round(Math.random()*(p-1));
function showImagea(){
document.write('<img src="header/'+theImagesa[whichImage]+'"alt="Hill Town Logo"  width="150" height="150">');
}

var theImagesb = new Array()
theImagesb[0] = 'img17.jpg'
theImagesb[1] = 'img18.jpg'
theImagesb[2] = 'img19.jpg'
theImagesb[3] = 'img20.jpg'
theImagesb[4] = 'img21.jpg'
theImagesb[5] = 'img22.jpg'
theImagesb[6] = 'img23.jpg'
theImagesb[7] = 'img24.jpg'


var i = 0
var p = theImagesb.length;

var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theImagesb[i]
}

var whichImage = Math.round(Math.random()*(p-1));
function showImageb(){
document.write('<img src="header/'+theImagesb[whichImage]+'"alt="Hill Town Logo"  width="150" height="150">');
}

//-->
