// JavaScript Document

if (document.images) {
ads = new Array(4);
ads[0] = "images/banner/ianthe.jpg";
ads[1] = "images/banner/brondby.jpg";
ads[2] = "images/banner/melrose.jpg";
ads[3] = "images/banner/ophelia.jpg";
}

newplace = new Array(4);
newplace[0] = "shower_baths.php"
newplace[1] = "shower_baths.php"
newplace[2] = "shower_baths.php"
newplace[3] = "shower_baths.php"

var timer = null
var	 counter = 0

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

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