
NS4 = false;
if ((navigator.appName == "Netscape") && (parseInt(navigator.appVersion) == 4)) {
	NS4 = true;
}

	link1off = new Image();
	link1off.src = "images/indexhotel_on.gif";
	link1on = new Image();
	link1on.src = "images/indexhotel_off.gif";

	link2off = new Image();
	link2off.src = "images/indexattractions_on.gif";
	link2on = new Image();
	link2on.src = "images/indexattractions_off.gif";

	link3off = new Image();
	link3off.src = "images/indexcontact_on.gif";
	link3on = new Image();
	link3on.src = "images/indexcontact_off.gif";
	
//Menu Rollovers
	
	link4off = new Image();
	link4off.src = "images/guesthouse_on.gif";
	link4on = new Image();
	link4on.src = "images/guesthouse_off.gif";

    link5off = new Image();
	link5off.src = "images/accommodations_on.gif";
	link5on = new Image();
	link5on.src = "images/accommodations_off.gif";

	link6off = new Image();
	link6off.src = "images/attractions_on.gif";
	link6on = new Image();
	link6on.src = "images/attractions_off.gif";

	link7off = new Image();
	link7off.src = "images/location_on.gif";
	link7on = new Image();
	link7on.src = "images/location_off.gif";

	link8off = new Image();
	link8off.src = "images/contact_on.gif";
	link8on = new Image();
	link8on.src = "images/contact_off.gif";


	link9off = new Image();
	link9off.src = "images/home_on.gif";
	link9on = new Image();
	link9on.src = "images/home_off.gif";




function turnon(i, whichLayer) {
	if (NS4 && whichLayer) {
		document.layers[whichLayer].document.images[i].src = eval(i + "on.src");
	} else {
		document.images[i].src = eval(i + "on.src");
	}
}

function turnoff(i, whichLayer) {
	if (NS4 && whichLayer) {
		document.layers[whichLayer].document.images[i].src = eval(i + "off.src");
	} else {
		document.images[i].src = eval(i + "off.src");
	}
}
