// Java Document
// randomImage(['0.gif',50,50,'1.gif',25,25,'2.gif',50,25]); 
<!-- Beginning of JavaScript -

if (document.images) {
ads = new Array(3);
//ads[0] = "images/bingoGif3.gif";
ads[0] = "images/banquethr2.png";
ads[1] = "images/breakfastb1.png";
}
var timer = null
var	 counter = 0
var maxcounter = 2

newplace = new Array(maxcounter);
//newplace[0] = "bingo.html"
newplace[0] = "hallrental.html"
newplace[1] = "specialevents.html"


function banner() {
	  timer=setTimeout("banner()", 7000);
		counter++;
		if (counter >= maxcounter)
		counter = 0;
		document.bannerad.src = ads[counter];
}

function showIMG() {
		counter2 = counter;
		window.location.href = newplace[counter2];
}
