//menu objects

function showMenuPos(menu)
{
  x=window.event.clientX-window.event.offsetX+document.body.scrollLeft;
  y=window.event.clientY-window.event.offsetY+document.body.scrollTop+16;
  showMenu(menu, x, y);
}

function loadMenus() {
    //Dynamic Menus
  window.neMenu = new Menu();
  neMenu.addMenuItem("Nyheter", "top.window.location='/news/senaste.asp'");
  neMenu.addMenuItem("Arkiv", "top.window.location='/news/arkiv.asp'");
  neMenu.fontColor = "white";
  neMenu.menuHiliteBgColor = "#B50000";
  neMenu.menuItemBgColor = "#800000";
  neMenu.fontSize = 12;
  neMenu.fontFamily = "verdana";
  neMenu.disableDrag = true;

  window.coMenu = new Menu();
  coMenu.addMenuItem("Presentation", "top.window.location='/company/presentation.asp'");
  coMenu.addMenuItem("Miljö", "top.window.location='/company/miljo.asp'");
  coMenu.addMenuItem("Kontaka oss", "top.window.location='/company/kontakt.asp'");
  coMenu.addMenuItem("Vägbeskrivning", "top.window.location='/company/vagbeskrivning.asp'");
  coMenu.fontColor = "white";
  coMenu.menuHiliteBgColor = "#B50000";
  coMenu.menuItemBgColor = "#800000";
  coMenu.fontSize = 12;
  coMenu.fontFamily = "verdana";
  coMenu.disableDrag = true;

  window.prMenu = new Menu();
  prMenu.addMenuItem("Galleri", "top.window.location='/products/gallery.asp'");
  prMenu.addMenuItem("Priser & Produktblad", "top.window.location='/products/produkter.asp'");
  prMenu.addMenuItem("Ladda ner produktkatalog", "top.window.location='/products/download.asp'");
  prMenu.addMenuItem("Info: Tallrikstub & fjäder", "top.window.location='/products/info.asp'");
  prMenu.addMenuItem("Produktfördelar", "top.window.location='/products/pf.asp'");
  prMenu.fontColor = "white";
  prMenu.menuHiliteBgColor = "#B50000";
  prMenu.menuItemBgColor = "#800000";
  prMenu.fontSize = 12;
  prMenu.fontFamily = "verdana";
  prMenu.disableDrag = true;

  window.liMenu = new Menu();
  liMenu.addMenuItem("BFS Direkt", "window.location='http://www.bfs.se'");
  liMenu.addMenuItem("SKBF", "window.location='http://www.skbf.se/'");
  liMenu.addMenuItem("Länkar", "top.window.location='/links/links.asp'");
  liMenu.addMenuItem("Skicka in ny länk", "top.window.location='/links/addlink.asp'");
  liMenu.fontColor = "white";
  liMenu.menuHiliteBgColor = "#B50000";
  liMenu.menuItemBgColor = "#800000";
  liMenu.fontSize = 12;
  liMenu.fontFamily = "verdana";
  liMenu.disableDrag = true;

  liMenu.writeMenus();

}
