/*HM_Loader.js
* by Peter Belesis. v4.0.4 010206
* Copyright (c) 2001 Peter Belesis. All Rights Reserved.
*/
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_a_Parameters = [
	["MenuWidth",          140],
	["FontFamily",         "arial"], // styles reference
	["FontSize",           10], // styles reference
	["FontBold",           false],
	["FontItalic",         false],
	["FontColor",          "#4D4748"],// styles reference
	["FontColorOver",      "#4D4748"],// styles reference
	["BGColor",            "#ffffff"],// styles reference
	["BGColorOver",        "#D9EAFB"],// styles reference
	["ItemPadding",        0],
	["BorderWidth",        1],
	["BorderColor",        "#4E4E4E"],
	["BorderStyle",        "solid"],
	["SeparatorSize",      1],
	["SeparatorColor",     "#807474"],
	["ImageSrc",           null],
	["ImageSrcLeft",       null],
	["ImageSize",          5],
	["ImageHorizSpace",    0],
	["ImageVertSpace",     0],
	["KeepHilite",         false],
	["ClickStart",         false],
	["ClickKill",          false],
	["ChildOverlap",       20],
	["ChildOffset",        10],
	["ChildPerCentOver",   null],
	["TopSecondsVisible",  .5],
	["StatusDisplayBuild", 0],
	["StatusDisplayLink",  1],
	["UponDisplay",        null],
	["UponHide",           null],
	["RightToLeft",        false],
	["CreateTopOnly",      0],
	["ShowLinkCursor",     false]
]

HM_MenuIDPrefix = "HM_Menu";
HM_ItemIDPrefix = "HM_Item";
HM_ArrayIDPrefix = "HM_Array";

if(HM_IsMenu) {
	document.writeln("<SCR" + "IPT LANGUAGE='JavaScript1.2' SRC='HM_Arrays.js'><\/SCR" + "IPT>");
	document.writeln("<SCR" + "IPT LANGUAGE='JavaScript1.2' SRC='HM_Script"+ HM_BrowserString +".js'><\/SCR" + "IPT>");
}


//end