/*HM_Loader.js
* by Peter Belesis. v4.0.4 010206
* Copyright (c) 2001 Peter Belesis. All Rights Reserved.
*/

// Modify variables labeled HM_GL_****** below.  These are the global variables.
// Same variables in HM_Arrays.js override these globals.
// None of the browser detect code was altered from original Hiermenus 4.0.4 script.
// dm - 3/2/01

// Modified all HM _PG variables.  They used to be GL and did not work for Mac IE
// So I changed them to PG and all is well.
// vw - 8/10/01

HM_DOM = (document.getElementById) ? true : false;
HM_NS4 = (document.layers) ? true : false;
HM_IE = (document.all) ? true : false;
HM_IE4 = HM_IE && !HM_DOM;
HM_Mac = (navigator.appVersion.indexOf("Mac") != -1);
HM_IE4M = HM_IE4 && HM_Mac;
HM_IsMenu = (HM_DOM || HM_NS4 || (HM_IE4 && !HM_IE4M));

HM_BrowserString = HM_NS4 ? "NS4" : HM_DOM ? "DOM" : "IE4";

if(window.event + "" == "undefined") event = null;
function HM_f_PopUp(){return false};
function HM_f_PopDown(){return false};
popUp = HM_f_PopUp;
popDown = HM_f_PopDown;


HM_PG_MenuWidth = 180;
HM_PG_FontFamily = "Verdana, Arial, Helvetica";
HM_PG_FontSize = 8;
HM_PG_FontBold = 1;
HM_PG_FontItalic = 0;
HM_PG_FontColor  = "#00165C";
HM_PG_FontColorOver = "#EEF0F5"; // weiss
HM_PG_BGColor = "#EEF0F5"; // Hell orange
HM_PG_BGColorOver  = "#0078AB"; // Dunkel orange
HM_PG_ItemPadding = 1;

HM_PG_BorderWidth = 0;
HM_PG_BorderColor = "#F4F5FB"; //schwarz
HM_PG_BorderStyle = "solid";
HM_PG_SeparatorSize = 1;
HM_PG_SeparatorColor = "#EEF0F5"; //schwarz

HM_PG_ImageSrc  = "../grafiken/pfeil-1.gif";
HM_PG_ImageSrcLeft = "../grafiken/pfeil-1.gif";
HM_PG_ImageSize = 6;
HM_PG_ImageHorizSpace = 2;
HM_PG_ImageVertSpace = 2;

HM_PG_KeepHilite = true; 
HM_PG_ClickStart = false;
HM_PG_ClickKill = 0;
HM_PG_ChildOverlap = 1;
HM_PG_ChildOffset = -1;
HM_PG_ChildPerCentOver = null;
HM_PG_TopSecondsVisible = .2;
HM_PG_StatusDisplayBuild =0;
HM_PG_StatusDisplayLink = 1;
HM_PG_UponDisplay = null;
HM_PG_UponHide = null;
//HM_PG_RightToLeft = false;
//HM_PG_CreateTopOnly = 1;
HM_PG_ShowLinkCursor = true;
HM_PG_NSFontOver = true;

if(HM_IsMenu) {
	document.write("<SCR" + "IPT LANGUAGE='JavaScript1.2' SRC='menu-arrays.js' TYPE='text/javascript'><\/SCR" + "IPT>");
	document.write("<SCR" + "IPT LANGUAGE='JavaScript1.2' SRC='HM_Script"+ HM_BrowserString +".js' TYPE='text/javascript'><\/SCR" + "IPT>");
}

//end

// Hiermenus has loaded its menus, so additional scripts can now be called.
//
// NOTE: Hiermenus runs within the body onload event, so any additional
// scripts you call below are being run within body onload.
// loadCSSFile()
