<!-- 
//nsaf.js

isNav = (document.layers)? true:false
isIE = (document.all)? true:false
isDom3 = (document.getElementById)? true:false

function isMac() {
	return (navigator.appVersion.indexOf("Mac") != -1)
}

// delete if causing problems
function isNav6() {
if (parseInt(navigator.appVersion.charAt(0)) > 4 && navigator.appName == "Netscape")  {
	alert('Netscape Navigator 6 does not support standard implentations of CSS. Portions of this site may not work properly with Netscape Navigator 6.')
	}
}

function msover(){
	if (isIE)	{
		event.srcElement.style.color="336699"; //matches the blue in the logo
  		event.srcElement.style.cursor = "hand";
	}
}

//turns links bluegreen when mouse rolls out (IE)
function msout(){
	if (isIE)	{
  		event.srcElement.style.color="white";
  		event.srcElement.style.cursor = "auto";
	}
}

//-->