// dropdown window info

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 = 150;
HM_PG_FontFamily = "Verdana,Arial,Helvetica,sans-serif";
HM_PG_FontSize = 8;
HM_PG_FontBold = 0;
HM_PG_FontItalic = 0;
//HM_PG_FontColor = "blue";
//HM_PG_FontColorOver = "white";
//HM_PG_BGColor = "#DDDDDD";
//HM_PG_BGColorOver = "#FFCCCC";
HM_PG_ItemPadding = 3;

HM_PG_BorderWidth = 1;
//HM_PG_BorderColor = "black";
HM_PG_BorderStyle = "solid";
HM_PG_SeparatorSize = 1;
//HM_PG_SeparatorColor = "#d0ff00";

HM_PG_ImageSrc = "/images/menu_right_arrow_a.gif";
HM_PG_ImageSrcLeft = "/images/menu_left_arrow_a.gif";
HM_PG_ImageSrcOver = "/images/menu_right_arrow_b.gif";
HM_PG_ImageSrcLeftOver = "/images/menu_left_arrow_b.gif";

HM_PG_ImageSize = 5;
HM_PG_ImageHorizSpace = 0;
HM_PG_ImageVertSpace = 2;

HM_PG_KeepHilite = true; 
HM_PG_ClickStart = 0;
HM_PG_ClickKill = false;
HM_PG_ChildOverlap = 10;
HM_PG_ChildOffset = 10;
HM_PG_ChildPerCentOver = null;
HM_PG_TopSecondsVisible = .5;
HM_PG_StatusDisplayBuild =0;
HM_PG_StatusDisplayLink = 0;
HM_PG_UponDisplay = null;
HM_PG_UponHide = null;
HM_PG_RightToLeft = false;

HM_PG_CreateTopOnly = 1;
HM_PG_ShowLinkCursor = 1;
HM_PG_NSFontOver = true;

//HM_a_TreesToBuild = [2];
	


// Reloads the window if Nav4 resized
/*
function MM_reloadPage(init) {  
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);

*/

//This array and function set is for the rollovers in the Main Navigation Bar

ver4 = (document.layers || document.all) ? 1 : 0;
 
 if (document.images) {
  navImageSrc = new Array (
        "solutions_a.gif",
        "solutions_b.gif",
        "customer_a.gif",
        "customer_b.gif",
		"services_a.gif",
        "services_b.gif",
		"support_a.gif",
        "support_b.gif",
		"contact_a.gif",
        "contact_b.gif",
		"news_a.gif",
        "news_b.gif",
		"about_a.gif",
        "about_b.gif"
		)
  navImageList = new Array ();
  for (counter in navImageSrc) {
   navImageList[counter] = new Image();
   navImageList[counter].src = PathToRoot + "images/nav/" + navImageSrc[counter];
  }
 }
 
 function navRollOver(imName,over) {
  if (!document.images) {
   return
  }
  
  whichIm = document.images[imName];
  
  if (over) {
   whichIm.src = PathToRoot + "images/nav/" + imName + "_b.gif"
  } else {
   whichIm.src = PathToRoot + "images/nav/" + imName + "_a.gif"
  }
 }

