/* This code is Copyright (c)1996-99 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") {
		tn1on = new Image();
		tn1on.src = "images/nav/tn_home_r.gif";
		tn2on = new Image();
		tn2on.src = "images/nav/tn_about_bayshore_r.gif";
		tn3on = new Image();
		tn3on.src = "images/nav/tn_bayshore_companies_r.gif";
		tn4on = new Image();
		tn4on.src = "images/nav/tn_press_room_r.gif";
		tn5on = new Image();
		tn5on.src = "images/nav/tn_careers_r.gif";
		tn6on = new Image();
		tn6on.src = "images/nav/tn_contact_us_r.gif";
		
		tn1off = new Image();
		tn1off.src = "images/nav/tn_home_n.gif";
		tn2off = new Image();
		tn2off.src = "images/nav/tn_about_bayshore_n.gif";
		tn3off = new Image();
		tn3off.src = "images/nav/tn_bayshore_companies_n.gif";
		tn4off = new Image();
		tn4off.src = "images/nav/tn_press_room_n.gif";
		tn5off = new Image();
		tn5off.src = "images/nav/tn_careers_n.gif";
		tn6off = new Image();
		tn6off.src = "images/nav/tn_contact_us_n.gif";

		bn1on = new Image();
		bn1on.src = "images/nav/bn_sitemap_r.gif";
		bn2on = new Image();
		bn2on.src = "images/nav/bn_feedback_r.gif";
		bn3on = new Image();
		bn3on.src = "images/nav/bn_legal_r.gif";
		bn4on = new Image();
		bn4on.src = "images/nav/bn_help_r.gif";
		
		bn1off = new Image();
		bn1off.src = "images/nav/bn_sitemap_n.gif";
		bn2off = new Image();
		bn2off.src = "images/nav/bn_feedback_n.gif";
		bn3off = new Image();
		bn3off.src = "images/nav/bn_legal_n.gif";
		bn4off = new Image();
		bn4off.src = "images/nav/bn_help_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;
		}
	}