
//   <body onload="banner()">
//   <a href="javascript:gothere()"><img src="webnichebanner.jpg" width="468" height="60" border="0" name="bannerad"></a>

if (document.images) {
ads = new Array(4);
ads[0] = "images/b_wc.jpg";
ads[1] = "images/b_be.jpg";
ads[2] = "images/b_ss.jpg";
ads[3] = "images/b_bob.jpg";
}

newplace = new Array(4);
newplace[0] = "west-coaster-tall-fescue.php"
newplace[1] = "bull-eye_bermuda.php"
newplace[2] = "sea_spray.php"
newplace[3] = "bull-eye_bermuda.php"

var timer = null
var	 counter = 0

function banner() {
	    timer=setTimeout("banner()", 8000);
		counter++;
		if (counter >= 4)
		counter = 0;
		document.bannerad.src = ads[counter];
}

function gothere() {
		counter2 = counter;
		window.location.href = newplace[counter2];
}