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>", "index.htm");
menu1.addItem(" <strong>MicroTelecomPOS.com</strong>", "http://www.microtelecompos.com");
menu1.addItem(" <strong>About</strong>", "about_microtelecom.htm");

var menu2 = ms.addMenu(document.getElementById("Software"));
menu2.addItem(" <strong>POS Software - Single Store</strong>", "http://www.microtelecompos.com/smallbiz.htm");
menu2.addItem(" <strong>POS Software - Multi Store</strong>", "http://www.microtelecompos.com/multistore.htm");
menu2.addItem(" <strong>Master Agents</strong>", "master_agent.htm");
menu2.addItem(" <strong>Software News</strong>", "http://www.microtelecompos.com/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");
 
var menu5 = ms.addMenu(document.getElementById("Support"));
menu5.addItem(" <strong>User Guide</strong>", "http://www.microtelecom.com/POSGuide/main.htm");
menu5.addItem(" <strong>View Demo</strong>", "http://www.microtelecompos.com/pos_demo.htm");
menu5.addItem(" <strong>Open Support Ticket</strong>", "https://support.microtelecom.com/UserTicket.aspx");
menu5.addItem(" <strong>Review Existing Ticket</strong>", "https://support.microtelecom.com/UserTicketPreview.aspx");
menu5.addItem(" <strong>Contact 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>", "http://www.microtelecompos.com/pos_software_download.htm");
menu6.addItem(" <strong>MicroTelecom SubAgent</strong>", "http://www.microtelecompos.com/subagent_download.htm");
menu6.addItem(" <strong>MicroTelecom Updates</strong>", "http://www.microtelecompos.com/pos_software_update.htm");
menu6.addItem(" <strong>Printer/Scanner Drivers</strong>", "http://www.microtelecompos.com/pos_printer_driver.htm");
menu6.addItem(" <strong>Demo/Help Tools</strong>", "http://www.microtelecompos.com/remote_assistance.htm");
menu6.addItem(" <strong>What's New?</strong>", "http://www.microtelecompos.com/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();}
