browserName = navigator.appName;
browserVer = parseInt(navigator.appVersion);
if ((browserName == "Netscape" && browserVer >= 3) || (browserName == "Microsoft Internet Explorer" && browserVer >= 4)) version = "n3";
else version = "n2";
	if (version == "n3")
	{
		menu1on = new Image(310, 27);
		menu1on.src = "images/navimg/menu_on.gif";
		menu1off = new Image(310, 27);
		menu1off.src = "images/navimg/menu_off.gif";
		
		menu2on = new Image(310, 27);
		menu2on.src = "images/navimg/specials_on.gif";
		menu2off = new Image(310, 27);
		menu2off.src = "images/navimg/specials_off.gif";
		
		menu3on = new Image(310, 27);
		menu3on.src = "images/navimg/map_directions_on.gif";
		menu3off = new Image(310, 27);
		menu3off.src = "images/navimg/map_directions_off.gif";
		
		menu4on = new Image(310, 27);
		menu4on.src = "images/navimg/home_on.gif";
		menu4off = new Image(310, 27);
		menu4off.src = "images/navimg/home_off.gif";
		
		menu5on = new Image(310, 27);
		menu5on.src = "images/navimg/contactus_on.gif";
		menu5off = new Image(310, 27);
		menu5off.src = "images/navimg/contactus_off.gif";
		
		menu6on = new Image(310, 27);
		menu6on.src = "images/navimg/catering_on.gif";
		menu6off = new Image(310, 27);
		menu6off.src = "images/navimg/catering_off.gif";
		
		menu7on = new Image(310, 27);
		menu7on.src = "images/navimg/employment_on.gif";
		menu7off = new Image(310, 27);
		menu7off.src = "images/navimg/employment_off.gif";
		
		menu8on = new Image(310, 27);
		menu8on.src = "images/navimg/dinner_menu_on.gif";
		menu8off = new Image(310, 27);
		menu8off.src = "images/navimg/dinner_menu_off.gif";
		
		menu9on = new Image(310, 27);
		menu9on.src = "images/navimg/gallery_on.gif";
		menu9off = new Image(310, 27);
		menu9off.src = "images/navimg/gallery_off.gif";

		menu10on = new Image(310, 27);
		menu10on.src = "images/navimg/calendar_on.gif";
		menu10off = new Image(310, 27);
		menu10off.src = "images/navimg/calendar_off.gif";
	}
	function img_act(imgName)
	{
		if (version == "n3")
		{
			imgOn = eval(imgName + "on.src");
			document [imgName].src = imgOn;
		}
	}
	function img_inact(imgName)
	{
		if (version == "n3")
		{
			imgOff = eval(imgName + "off.src");
			document [imgName].src = imgOff;
		}
	}
