<!--

/* This code is Copyright (c)1996-2003 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") {
		accounton = new Image();
		accounton.src = "images/tn_account_r.gif";
		touron = new Image();
		touron.src = "images/tn_tour_r.gif";

		accountoff = new Image();
		accountoff.src = "images/tn_account_n.gif";
		touroff = new Image();
		touroff.src = "images/tn_tour_n.gif"

		tour1on = new Image();
		tour1on.src = "images/t_getting_started_r.gif";
		tour2on = new Image();
		tour2on.src = "images/t_browse_r.gif";
		tour3on = new Image();
		tour3on.src = "images/t_chat_r.gif";
		tour4on = new Image();
		tour4on.src = "images/t_search_r.gif";
		
		tour1off = new Image();
		tour1off.src = "images/t_getting_started_n.gif";
		tour2off = new Image();
		tour2off.src = "images/t_browse_n.gif";
		tour3off = new Image();
		tour3off.src = "images/t_chat_n.gif";
		tour4off = new Image();
		tour4off.src = "images/t_search_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;
		}
	}

//-->
