	Menu_DOM = (document.getElementById) ? true : false;
	Menu_NS4 = (document.layers) ? true : false;
	Menu_IE = (document.all) ? true : false;
	Menu_IE4 = Menu_IE && !Menu_DOM;
	Menu_Mac = (navigator.appVersion.indexOf("Mac") != -1);
	Menu_IE4M = Menu_IE4 && Menu_Mac;
	Menu_IsMenu = (Menu_DOM || Menu_NS4 || (Menu_IE4 && !Menu_IE4M));

	Menu_BrowserString = Menu_NS4 ? "NS4" : Menu_DOM ? "DOM" : "IE4";

	if(window.event + "" == "undefined") event = null;
	function Menu_f_PopUp(){return false};
	function Menu_f_PopDown(){return false};

	Menu_GL_MenuWidth          = 110;
	Menu_GL_FontFamily         = "arial,sans-serif";
	Menu_GL_FontSize           = 8;
	Menu_GL_FontBold           = false;
	Menu_GL_FontItalic         = false;
	Menu_GL_FontColor          = "black";
	Menu_GL_FontColorOver      = "white";
	Menu_GL_BGColor            = "transparent";
	Menu_GL_BGColorOver        = "transparent";
	Menu_GL_ItemPadding        = 4;

	Menu_GL_BorderWidth        = 1;
	Menu_GL_BorderStyle        = "solid";
	Menu_GL_SeparatorSize      = 1;

	Menu_GL_ImageSrc = "images/icon_arrow.gif";
	Menu_GL_ImageSrcLeft = "images/k.gif";

	Menu_GL_ImageSrcOver = "images/icon_arrow_over.gif";
	Menu_GL_ImageSrcLeftOver = "images/k.gif";

	Menu_GL_ImageSize          = 5;
	Menu_GL_ImageHorizSpace    = 5;
	Menu_GL_ImageVertSpace     = 5;

	Menu_GL_KeepHilite         = false;
	Menu_GL_ClickStart         = false;
	Menu_GL_ClickKill          = 0;
	Menu_GL_ChildOverlap       = 10;
	Menu_GL_ChildOffset        = 5;
	Menu_GL_ChildPerCentOver   = null;
	Menu_GL_TopSecondsVisible  = .5;
	Menu_GL_ChildSecondsVisible = .3;
	Menu_GL_StatusDisplayBuild = 0;
	Menu_GL_StatusDisplayLink  = 1;
	Menu_GL_UponDisplay        = null;
	Menu_GL_UponHide           = null;

	//Menu_GL_RightToLeft      = true;
	Menu_GL_CreateTopOnly      = Menu_NS4 ? true : false;
	Menu_GL_ShowLinkCursor     = true;

	// the following function is included to illustrate the improved JS expression handling of
	// the left_position and top_position parameters
	// you may delete if you have no use for it

	function Menu_f_CenterMenu(topmenuid)
	{
		var MinimumPixelLeft = 0;
		var TheMenu = Menu_DOM ? document.getElementById(topmenuid) : Menu_IE4 ? document.all(topmenuid) : eval("window." + topmenuid);
		var TheMenuWidth = Menu_DOM ? parseInt(TheMenu.style.width) : Menu_IE4 ? TheMenu.style.pixelWidth : TheMenu.clip.width;
		var TheWindowWidth = Menu_IE ? document.body.clientWidth : window.innerWidth;
		return Math.max(parseInt((TheWindowWidth-TheMenuWidth) / 2),MinimumPixelLeft);
	}

	if(Menu_IsMenu)
	{
		document.write("<SCRIPT language='JavaScript1.2' SRC='include/menu_arrays.js' type='text/javascript'></SCRIPT>");
		document.write("<SCRIPT language='JavaScript1.2' SRC='include/menu_script"+ Menu_BrowserString +".js' type='text/javascript'></SCRIPT>");
	}