/***************************
* JS-code for the menu *
****************************/

var mstrMenuVisible = "";
var mintMenuTop = 95;



function doInitMenuBar(){
  doMenuBarFillUpArray();

  for(var intI = 0; intI < mstrSubmenus.length; intI++){
    document.getElementById("" + mstrSubmenus[intI]).style.left = Math.abs(document.getElementById("tbdMenu_" + mstrSubmenus[intI].substring(9)).offsetLeft) - 5;
    document.getElementById("" + mstrSubmenus[intI]).style.top = 99;
  }
}



function doActionRollUp(varID){
  if(document.getElementById(varID)){   document.getElementById(varID).style.display = "none";   }
}


var mstrSubMSel = "";
function showDropDown(varID){
  if(mstrSubMSel != ""){   doActionRollUp(mstrSubMSel);   }

  mstrSubMSel = "" + varID;
  if(mstrSubMSel != ""){
    if(document.getElementById("" + mstrSubMSel)){   document.getElementById("" + mstrSubMSel).style.display = "block";   }
  }
}
