
<!-- Hide from old browers

bName = navigator.appName; //Detect if browser is Netscape 3+ or IE 4 +
bVer = parseInt(navigator.appVersion);
if ((bName=="Netscape" && bVer >= 3) || (bName=="Microsoft Internet Explorer" && bVer>=4)) br="n3";
else br="n2";
//document.write(br);

// Create image objects, preload all active and inactive images
if (br=="n3")
{
img1dark = new Image();				//onMouseOver images
img1dark.src="images/familydark.jpg";
//img2dark = new Image();
//img2dark.src="images/productdark.jpg";
img3dark = new Image();
img3dark.src="images/tourdark.jpg";
img4dark = new Image();
img4dark.src="images/joindark.jpg";
img5dark = new Image();
img5dark.src="images/alldark.jpg";
img1light = new Image();				//Default and onMouseOut images
img1light.src="images/familylight.jpg";
//img2light = new Image();
//img2light.src="images/productlight.jpg";
img3light = new Image();
img3light.src="images/tourlight.jpg";
img4light = new Image();
img4light.src="images/joinlight.jpg";
img5light = new Image();
img5light.src="images/alllight.jpg";
}

function Activ(imgName){
	if (br=="n3"){
		document[imgName].src = eval(imgName + "dark.src");
	}
}

function InActiv(imgName){
	if (br=="n3"){
	//var name=eval(imgName + "off);
	//document.write(name);
	document[imgName].src = eval(imgName + "light.src");
	}

}


//-->
