   DOM = (document.getElementById) ? true : false;
   NS4 = (document.layers) ? true : false;
    IE = (document.all) ? true : false;
   IE4 = IE && !DOM;
   Mac = (navigator.appVersion.indexOf("Mac") != -1);
  IE4M = IE4 && Mac;
 Opera = (navigator.userAgent.indexOf("Opera")!=-1);
 Konqueror = (navigator.userAgent.indexOf("Konqueror")!=-1);

IsMenu = !Opera && !Konqueror && !IE4M && (DOM || NS4 || IE4);

BrowserString = NS4 ? "ns4" : DOM ? "dom" : "ie4";


if(window.event + "" == "undefined") event = null;
function f_PopUp(){return false};
function f_PopDown(){return false};
popUp = f_PopUp;
popDown = f_PopDown;


GL_MenuWidth          = 105;
GL_FontFamily         = "tahoma, arial, sans-serif";
GL_FontSize           = 8;
GL_FontBold           = false;
GL_FontItalic         = false;
GL_FontColor          = "#000000";
GL_FontColorOver      = "#000000";
GL_BGColor            = "#F6DC04";
GL_BGColorOver        = "#FCF4B3";
GL_ItemPadding        = 2;

GL_BorderWidth        = 1;
GL_BorderColor        = "#0075BB";
GL_BorderStyle        = "solid";
GL_SeparatorSize      = 1;
GL_SeparatorColor     = "#999999";

GL_ImageSrc = "/data/images/menu-right-off.gif";
GL_ImageSrcLeft = "/content/images/menu-left-off.gif";

GL_ImageSrcOver = "/content/images/menu-right-on.gif";
GL_ImageSrcLeftOver = "/content/images/menu-left-on.gif";

GL_ImageSize          = 4;
GL_ImageHorizSpace    = 6;
GL_ImageVertSpace     = 1;

GL_KeepHilite         = true;
GL_ClickStart         = false;
GL_ClickKill          = 2;
GL_ChildOverlap       = 2;
GL_ChildOffset        = 2;
GL_ChildPerCentOver   = null;
GL_TopSecondsVisible  = .5;
GL_ChildSecondsVisible = .5;
GL_StatusDisplayBuild = 1;
GL_StatusDisplayLink  = 1;
GL_UponDisplay        = null;
GL_UponHide           = null;

// 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 f_CenterMenu(topmenuid) {
	var MinimumPixelLeft = 0;
	var TheMenu = DOM ? document.getElementById(topmenuid) : IE4 ? document.all(topmenuid) : eval("window." + topmenuid);
	var TheMenuWidth = DOM ? parseInt(TheMenu.style.width) : IE4 ? TheMenu.style.pixelWidth : TheMenu.clip.width;
	var TheWindowWidth = IE ? document.body.clientWidth : window.innerWidth;
	return Math.max(parseInt((TheWindowWidth-TheMenuWidth) / 2),MinimumPixelLeft);
}

if(IsMenu) {
	document.write("<SCR" + "IPT LANGUAGE='JavaScript1.2' SRC='/data/header/menu/arrays.js' TYPE='text/javascript'><\/SCR" + "IPT>");
	document.write("<SCR" + "IPT LANGUAGE='JavaScript1.2' SRC='/data/header/menu/script"+ BrowserString +".js' TYPE='text/javascript'><\/SCR" + "IPT>");
}

//end