// Made in the USA by
// MINDSEYE, Inc.
// 51 Melcher Street
// Boston MA 02210
// +617/350-0339
// http://www.mindseye.com 

// MeT-DHTML Navigation Version 1.1
// Created  - 04/13/2001
// Modified - 05/22/2001 - To handle 3 levels of menus, break out code based on browser.
// Modified - 06/12/2002 - Converted to ASP/VB
	
	
   NS4 = (document.layers);
   IE4 = (document.all);
  ver4 = (NS4 || IE4);   
 isMac = (navigator.appVersion.indexOf("Mac") != -1);
isMenu = (NS4 || (IE4 && !isMac));


// NS6
// Check browser for Level 1 DOM 
var isIE = navigator.appVersion.indexOf("MSIE")>0;
var myAppName = navigator.appName;
var myVersion = parseInt(navigator.appVersion);
var NS6 = ((myAppName == "Netscape") && (myVersion == 5) && (document.getElementById));
var borderWidth = 1; 					// Width of the menu borders
var borderTop = 0;						// This will pad the top of the menu
var borderBottom = 0;					// This will pad the bottom of the menu
var borderColor = "#333333"; 			// Color of the menu borders NO LONGER USED. This gets done in the aray
var mouseOverColor = "#CCCCCC"; 		// Mouse over color for Menus
var menuItemHeight = 16;

var fntStyle = "font-weight: normal; font-family : Verdana; font-size : " + (isIE?9:10) + "px; text-decoration : none;";

var currentMenu = "";				// Variable that stores currently visible menu
var currentSubMenu = "";			// Variable that stores currently visible SubMenu
var arrcnt = 1;						// Init a variable to use to contain the number of DHTML menus present.
var DoneBuildingMenus = 0;