<!--

/* This code is Copyright (c)1996-2002 by doZE!gfx. */

	browserName = navigator.appName;
	browserVer = parseInt(navigator.appVersion);
	if ((browserName == "Netscape" && browserVer >= 3) | (browserVer >=4)) version ="yes";
		else version = "no";

	if (version == "yes") {
		homeon = new Image();
		homeon.src = "images/tn_home_r.gif";
		signupon = new Image();
		signupon.src = "images/tn_signup_r.gif";
		faqon = new Image();
		faqon.src = "images/tn_faq_r.gif";
		resourceson = new Image();
		resourceson.src = "images/tn_resources_r.gif";
		emailon = new Image();
		emailon.src = "images/tn_email_r.gif";
		
		homeoff = new Image();
		homeoff.src = "images/tn_home_n.gif";
		signupoff = new Image();
		signupoff.src = "images/tn_signup_n.gif";
		faqoff = new Image();
		faqoff.src = "images/tn_faq_n.gif";
		resourcesoff = new Image();
		resourcesoff.src = "images/tn_resources_n.gif";
		emailoff = new Image();
		emailoff.src = "images/tn_email_n.gif";

		privacyon = new Image();
		privacyon.src = "images/bn_privacy_r.gif";
		
		privacyoff = new Image();
		privacyoff.src = "images/bn_privacy_n.gif";

		
	}

	function img_act(imgName) {
		if (version == "yes") {
			imgOn = eval(imgName + "on.src");
			document[imgName].src = imgOn;
		}
	}

	function img_inact(imgName) {
		if (version == "yes") {
			imgOff = eval(imgName + "off.src");
			document[imgName].src = imgOff;
		}
	}

//-->

