


<!--
//Detect if browser is NS3+ or IE4+
browserName=navigator.appName;
browserVersion=parseInt (navigator.appVersion);
if ((browserName=="Netscape" && browserVersion >=3) ||
		(browserName=="Microsoft Internet Explorer" && browserVersion>=4)) br="n3";
else br="n2";

//Create image objects and preload all active and inactive images
if (br=="n3"){

	phototouron=new Image();
	phototouron.src="images/nav-but-01-phototour-on.gif";
  	placesofintereston=new Image();
	placesofintereston.src="images/nav-but-02-placesofinterest-on.gif";
	rateson=new Image();
	rateson.src="images/nav-but-04-rates-on.gif"; 
	mapson=new Image();
	mapson.src="images/nav-but-05-maps-on.gif"; 
	contactuson=new Image();
	contactuson.src="images/nav-but-06-contactus-on.gif";
	homeon=new Image();
	homeon.src="images/nav-but-07-home-on.gif";



	phototouroff=new Image();
	phototouroff.src="images/nav-but-01-phototour-off.gif";
  	placesofinterestoff=new Image();
	placesofinterestoff.src="images/nav-but-02-placesofinterest-off.gif";
	ratesoff=new Image();
	ratesoff.src="images/nav-but-04-rates-off.gif";
	mapsoff=new Image();
	mapsoff.src="images/nav-but-05-maps-off.gif";
	contactusoff=new Image();
	contactusoff.src="images/nav-but-06-contactus-off.gif";
	homeoff=new Image();
	homeoff.src="images/nav-but-07-home-off.gif";
	

}

//Image Activation
function imageAct(imgName) {
	if (br=="n3") {
			document[imgName].src=eval(imgName+"on.src");
	}
}
//Image Deactiviation with transparent fnord.gif
function imageInact(imgName) {
	if (br=="n3") {
			document[imgName].src=eval(imgName+"off.src");
	}
}
//-->
