if (mtDropDown.isSupported()) {
  var ms = new mtDropDownSet(mtDropDown.direction.down, 0, 0, mtDropDown.reference.bottomLeft);

  var menu1 = ms.addMenu(document.getElementById("menu1")); // COMPANY MENU
  menu1.addItem("About PDXTuning", "http://www.pdxtuning.com/about.htm");
  menu1.addItem("Contact Us", "http://www.pdxtuning.com/contact.htm");
   
  var menu2 = ms.addMenu(document.getElementById("menu2")); // SOLUTIONS MENU
  menu2.addItem("Access Port Tuning", "http://www.pdxtuning.com/_store_/showproduct.aspx?productid=120&categoryid=4");
  menu2.addItem("CobbAP map upgrade", "https://www.pdxtuning.com/secure_maprequest.htm");
  menu2.addItem("ECU Reflash", "http://www.pdxtuning.com/reflash.htm");
  menu2.addItem("UTEC Tuning", "http://www.pdxtuning.com/utec.htm");
  menu2.addItem("XEDE Tuning", "http://www.pdxtuning.com/xede.htm");
  menu2.addItem("Link Tuning", "http://www.pdxtuning.com/link.htm");
  menu2.addItem("Deltadash Software", "http://www.pdxtuning.com/deltadash.htm");
  
  var menu3 = ms.addMenu(document.getElementById("menu3")); // SUPPORT MENU
  menu3.addItem("PDXTuning Power Packages", "http://www.pdxtuning.com/solutions.htm");
  menu3.addItem("COBB Tuning", "http://www.pdxtuning.com/_store_/showmanufacturer.aspx?manufacturerid=15");
  menu3.addItem("EcuTEK", "http://www.pdxtuning.com/_store_/showmanufacturer.aspx?manufacturerid=9");
  menu3.addItem("Perrin Performance", "http://www.pdxtuning.com/_store_/showmanufacturer.aspx?manufacturerid=3");
  menu3.addItem("TurboXS", "http://www.pdxtuning.com/_store_/showmanufacturer.aspx?manufacturerid=2");

  var menu4 = ms.addMenu(document.getElementById("menu4")); // PARTNERS MENU
  menu4.addItem("The Dyno", "http://www.pdxtuning.com/dyno.htm");
  menu4.addItem("Pre-Dyno Session Instructions", "http://www.pdxtuning.com/predyno.htm");
   
  var menu5 = ms.addMenu(document.getElementById("menu5")); // PRESS MENU
  menu5.addItem("Jeff Sponaugle - WRX","http://www.pdxtuning.com/featured_cars/jeffs.htm");
  menu5.addItem("Jarrad Bowen - FJ Cruiser","http://www.pdxtuning.com/featured_cars/FJ-Cruiser.htm");
  menu5.addItem("Jarrad Bowen - Legacy GT","http://www.pdxtuning.com/featured_cars/jarrad_legacy.htm");
  menu5.addItem("Tim Bailey - US STI 2.5","http://www.pdxtuning.com/featured_cars/timb.htm");
  menu5.addItem("Mick Posner - WRX","http://www.pdxtuning.com/featured_cars/mickp.htm");
   menu5.addItem("Owen Christy - WRX - Sold","http://www.pdxtuning.com/featured_cars/owenc.htm");
 
  var menu6 = ms.addMenu(document.getElementById("menu6")); // TECHNICAL MENU
  menu6.addItem("Installation how to","http://www.pdxtuning.com/installation_home.htm");
  menu6.addItem("Technical discussions","http://www.pdxtuning.com/technical_home.htm");
  menu6.addItem("Warranty","http://www.pdxtuning.com/legal/warranty-policy.htm");
  menu6.addItem("Return Policy","http://www.pdxtuning.com/legal/T-C-return-policy.htm");  
  menu6.addItem("Off road use statement", "http://www.pdxtuning.com/legal/off-road-use-only.htm"); 
  mtDropDown.renderAll();
  }

