<!--

/* This code is Copyright (c)1996-2002 by pixcode inc. */

	browserName = navigator.appName;
	browserVer = parseInt(navigator.appVersion);
	if ((browserName == "Netscape" && browserVer >= 3) | (browserVer >=4)) version ="yes";
		else version = "no";

	if (version == "yes") {
		indexon = new Image();
		indexon.src = "images/navigation/n1_index_r.gif";
		homeon = new Image();
		homeon.src = "images/navigation/n1_home_r.gif";
		companyon = new Image();
		companyon.src = "images/navigation/n1_company_r.gif";
		serviceson = new Image();
		serviceson.src = "images/navigation/n1_services_r.gif";
		portfolioon = new Image();
		portfolioon.src = "images/navigation/n1_portfolio_r.gif";
		contacton = new Image();
		contacton.src = "images/navigation/n1_contact_r.gif";
		extraneton = new Image();
		extraneton.src = "images/navigation/n1_extranet_r.gif";
		
		indexoff = new Image();
		indexoff.src = "images/navigation/n1_index_n.gif";
		homeoff = new Image();
		homeoff.src = "images/navigation/n1_home_n.gif";
		companyoff = new Image();
		companyoff.src = "images/navigation/n1_company_n.gif";
		servicesoff = new Image();
		servicesoff.src = "images/navigation/n1_services_n.gif";
		portfoliooff = new Image();
		portfoliooff.src = "images/navigation/n1_portfolio_n.gif";
		contactoff = new Image();
		contactoff.src = "images/navigation/n1_contact_n.gif";
		extranetoff = new Image();
		extranetoff.src = "images/navigation/n1_extranet_n.gif";


		privacy_statementon = new Image();
		privacy_statementon.src = "images/navigation/nf_privacy_statement_r.gif";
		legalon = new Image();
		legalon.src = "images/navigation/nf_legal_r.gif";
		
		privacy_statementoff = new Image();
		privacy_statementoff.src = "images/navigation/nf_privacy_statement_n.gif";
		legaloff = new Image();
		legaloff.src = "images/navigation/nf_legal_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;
		}
	}

//-->
