var Menu = new NavBar(750);
var dhtmlMenu;

//Position på skærm x,y
Menu.moveTo(10,135);

//Størrelsen i pixels på border, padding, seperator
Menu.setSizes(1, 4, 1);

//Fontinfo: hdrFamily, hdrStyle, hdrWeight, hdrSize, itmFamily, itmStyle, itmWeight, itmSize
Menu.setFonts("Arial, Helvetica", "plain", "normal", "10pt",
    "Arial, Helvetica", "plain", "normail", "10pt");

//set menu colors
//Farvekoderne for:  "kanter"  "hovedtxt" "hovedbg"  "hovertxt" "hoverbg"  "undertxt" "underbg"  "undertxthover" "hoverbgunder"
Menu.setColors("#FFFFFF", "#FFFFFF", "#006C40", "#FFFFCC", "#006C40", "#FFFFFF", "#006C40", "#FFFFCC", "#006C40")

//uncomment below line to center the menu (valid values are "left", "center", and "right"
Menu.setAlign("left")

var fullWidth;

function init() {

  // Get width of window, need to account for scrollbar width in Netscape.

  fullWidth = getWindowWidth() 
    - (isMinNS4 && getWindowHeight() < getPageHeight() ? 16 : 0);

  Menu.resize(750);
  Menu.create();
  Menu.setzIndex(2);
}
