if (mtDropDown.isSupported()) {

		var ms = new mtDropDownSet(mtDropDown.direction.down, 0, 0, mtDropDown.reference.bottomLeft);

		var menu1 = ms.addMenu(document.getElementById("menu1"));
		menu1.addItem("- Company Profile","/about/company.aspx");
		menu1.addItem("- Intel Embedded & Communications Alliance","/about/eca.aspx");
		menu1.addItem("- Design / Build / Deliver (DBD)","/about/design.aspx");
		menu1.addItem("- Optimize Your Project","/about/project.aspx");
		menu1.addItem("- Press Room","/about/press.aspx");
		menu1.addItem("- Worldwide Events","/about/events.aspx");

		var menu2 = ms.addMenu(document.getElementById("menu2"));
		menu2.addItem("- Embedded Computing","/products/second.aspx?fid=1");
		menu2.addItem("- Mobile Computing","/products/second.aspx?fid=2");
		menu2.addItem("- Industrial Automation","/products/second.aspx?fid=3");
		menu2.addItem("- Business Automation","/products/second-business.aspx");
		menu2.addItem("- Network Communication","/products/second.aspx?fid=5");	

/*		var menu3 = ms.addMenu(document.getElementById("menu3"));
		menu3.addItem("<strong>Embedded Computing</strong>","");
		menu3.addItem("&nbsp;&nbsp;&nbsp;&nbsp;COM for Time to Market","/application/com.aspx");
		menu3.addItem("&nbsp;&nbsp;&nbsp;&nbsp;Slot Machine Application","/application/slotmachine.aspx");
		menu3.addItem("&nbsp;&nbsp;&nbsp;&nbsp;Server-based Gaming Platform","/application/gamingplatform.aspx");
		menu3.addItem("&nbsp;&nbsp;&nbsp;&nbsp;Harsh Environment","/application/harshenvironment.aspx");		
		menu3.addItem("<strong>Mobile Computing</strong>","");
		menu3.addItem("&nbsp;&nbsp;&nbsp;&nbsp;Mobile Gaming","/application/mobilegaming.aspx");	
		menu3.addItem("&nbsp;&nbsp;&nbsp;&nbsp;Mobile POS","/application/mobilepos.aspx");	
		menu3.addItem("&nbsp;&nbsp;&nbsp;&nbsp;Warehouse Management","/application/warehouse.aspx");	
		menu3.addItem("&nbsp;&nbsp;&nbsp;&nbsp;Battlefield Management","/application/battlefield.aspx");			
		menu3.addItem("<strong>Industrial Automation</strong>","");
		menu3.addItem("&nbsp;&nbsp;&nbsp;&nbsp;Factory Automation","/application/factory.aspx");	
		menu3.addItem("&nbsp;&nbsp;&nbsp;&nbsp;Machine Automation","/application/machine.aspx");	
		menu3.addItem("&nbsp;&nbsp;&nbsp;&nbsp;Building Automation","/application/building.aspx");	
		menu3.addItem("&nbsp;&nbsp;&nbsp;&nbsp;Universal Application","/application/universal.aspx");			
		menu3.addItem("<strong>Business Automation</strong>","");
		menu3.addItem("&nbsp;&nbsp;&nbsp;&nbsp;eHealth","/application/ehealth.aspx");	
		menu3.addItem("&nbsp;&nbsp;&nbsp;&nbsp;Mobile DVR","/application/mobiledvr.aspx");	
		menu3.addItem("&nbsp;&nbsp;&nbsp;&nbsp;Multimodal Biometrics Access","/application/multimodal.aspx");	
		menu3.addItem("&nbsp;&nbsp;&nbsp;&nbsp;Server-based Gaming Platform","/application/gamingplatform.aspx");
		menu3.addItem("&nbsp;&nbsp;&nbsp;&nbsp;Slot Machine Application","/application/slotmachine.aspx");
		menu3.addItem("<strong>Network Communication</strong>","");	
		menu3.addItem("&nbsp;&nbsp;&nbsp;&nbsp;Network Appliance Application","/application/ippbx.aspx");	
		menu3.addItem("&nbsp;&nbsp;&nbsp;&nbsp;Network Communication Application","/application/network.aspx");	
*/		
		var menu4 = ms.addMenu(document.getElementById("menu4"));
		menu4.addItem("- Technical Support","/support/policy.aspx");
		menu4.addItem("- Downloads","/support/download.aspx");
		menu4.addItem("- FAQ","/support/faq/faq.aspx");
		menu4.addItem("- Warranty","/support/warranty.aspx");

        var lan = ms.addMenu(document.getElementById("lan"));
		lan.addItem("- English (Worldwide)","http://www.arbor.com.tw/");
		lan.addItem("- 日本語","http://www.arbor.com.tw/jp/");
		lan.addItem("- 简体中文","http://www.arborchina.com/");
		lan.addItem("- 繁體中文","http://www.arbor.com.tw/ct/");
		lan.addItem("- Français","http://www.arbor.com.tw/fr/");
		
		mtDropDown.renderAll();
	}