if (mtDropDown.isSupported()) {
var ms = new mtDropDownSet(mtDropDown.direction.down, 0, 0, mtDropDown.reference.bottomLeft);
var menu1 = ms.addMenu(document.getElementById("Home"));
menu1.addItem(" <strong>Home</strong>", "http://www.microtelecom.com");
menu1.addItem(" <strong>About</strong>", "about_microtelecom.htm");

var menu2 = ms.addMenu(document.getElementById("Software"));
menu2.addItem(" <strong>POS Software - Single Store</strong>", "smallbiz.htm");
menu2.addItem(" <strong>POS Software - Multi Store</strong>", "multistore.htm");
menu2.addItem(" <strong>Online Office Secure</strong>", "officesecure.htm");
menu2.addItem(" <strong>Software News</strong>", "microtelecom_news.htm");
 
var menu3 = ms.addMenu(document.getElementById("Hardware"));
menu3.addItem(" <strong>POS Hardware</strong>", "poshardware.htm");

var menu4 = ms.addMenu(document.getElementById("Services"));
menu4.addItem(" <strong>Credit Card Processing</strong>", "ccprocessing.htm");
menu4.addItem(" <strong>Custom Software Development</strong>", "contactus.htm");
menu4.addItem(" <strong>PC Repair Service</strong>", "reserveonsitetech.htm");
 
var menu5 = ms.addMenu(document.getElementById("Support"));
menu5.addItem(" <strong>Register for a Demo</strong>", "https://www.microtelecom.com/cellular_pos_free_trial.htm");
menu5.addItem(" <strong>FAQ</strong>", "faq.htm");
menu5.addItem(" <strong>Customer Service</strong>", "support.htm");
menu5.addItem(" <strong>Bill Payment</strong>", "billpayment.htm");

var menu6 = ms.addMenu(document.getElementById("Download"));
menu6.addItem(" <strong>MicroTelecom POS Full Install</strong>", "pos_software_download.htm");
menu6.addItem(" <strong>MicroTelecom SubAgent</strong>", "subagent_download.htm");
menu6.addItem(" <strong>MicroTelecom Updates</strong>", "pos_software_update.htm");
menu6.addItem(" <strong>Printer/Scanner Drivers</strong>", "pos_printer_driver.htm");
menu6.addItem(" <strong>Demo/Help Tools</strong>", "remote_assistance.htm");
menu6.addItem(" <strong>What's New?</strong>", "microtelecom_news.htm");
 
var menu7 = ms.addMenu(document.getElementById("Contact"));
menu7.addItem(" <strong>Contact</strong>", "contactus.htm");
menu7.addItem(" <strong>About</strong>", "about_microtelecom.htm");
mtDropDown.renderAll();
init();}
