// This is where you edit the Navigation menu

var menuMgr = new NlsMenuManager("mgr");

// SUB MENUS

// About menu
  var menuAbout=menuMgr.createMenu("about");
  menuAbout.addItem("01", "About the bracket", "about_brackets.html");
  menuAbout.addItem("02", "History", "history.html");
  menuAbout.addItem("03", "FAQ", "faq.html");
  menuAbout.addItem("04", "Testimonials", "testimonials.html");
  
  
  // Product menu
  var menuProducts=menuMgr.createMenu("products");
  menuProducts.addItem("01", "Light Brackets", "lumalink_brackets.html");
  menuProducts.addItem("02", "T-Link", "T-Link_bracket.html");
  menuProducts.addItem("03", "Lights", "lights.html");
  menuProducts.addItem("04", "GPS Bracket", "gps.html");
  menuProducts.addItem("05", "Switch Mount Bracket", "switchmount.html");
  menuProducts.addItem("06", "Specialty Items", "specialty_items.html");
  

  // News menu
  var menuBikes=menuMgr.createMenu("bikes");
  menuBikes.addItem("01", "BMW", "bike-bmw.html");
  menuBikes.addItem("02", "Ducati", "bike-ducati.html");
  menuBikes.addItem("03", "Harly Davidson", "bike-harley.html");
  menuBikes.addItem("04", "Moto Guzzi", "bike-motoguzzi.html");
  menuBikes.addItem("05", "Custom/Other", "bike-custom.html");

// Main Menu

  var menuBar = menuMgr.createMenubar("menubar");
	menuBar.orient = "H";
	menuBar.showIcon = true;
	menuBar.showSubIcon = false;
    menuBar.stlprf="horz_";

  menuBar.addItem("01", "", "index.html", ["images/navbtns/home.gif","images/navbtns/home-over.gif"]);
  menuBar.addSeparator();
  menuBar.addItem("02", "", "about.html", ["images/navbtns/about.gif","images/navbtns/about-over.gif"], true, null, "about");
  menuBar.addSeparator();
  menuBar.addItem("03", "", "products.html", ["images/navbtns/products.gif","images/navbtns/products-over.gif"], true, null, "products");
  menuBar.addSeparator();
  menuBar.addItem("04", "", "install.html", ["images/navbtns/install.gif","images/navbtns/install-over.gif"]);
  menuBar.addSeparator();
  menuBar.addItem("05", "", "gallery.php", ["images/navbtns/gallery.gif","images/navbtns/gallery-over.gif"]);
  menuBar.addSeparator();
  menuBar.addItem("06", "", "order.php", ["images/navbtns/order.gif","images/navbtns/order-over.gif"]);
  menuBar.addSeparator();