	if (mtDropDown.isSupported()) {

		var ms = new mtDropDownSet(mtDropDown.direction.down, 0, 0, mtDropDown.reference.bottomLeft);

		var menu1 = ms.addMenu(document.getElementById("menu1"));
		// send no URL if nothing should happen onclick
	
//µÚ¶þ²Ëµ¥
		var menu2 = ms.addMenu(document.getElementById("menu2"));
		menu2.addItem("- Company News", "news.asp"); 
		menu2.addItem("- Industry Information", "yenews.asp"); // send no URL if nothing should happen onclick
	
		// menu : 3
		var menu3 = ms.addMenu(document.getElementById("menu3"));
		menu3.addItem("- Product Directory", "Product.asp");
		menu3.addItem("- Product Classification", "Products.asp");
	    menu3.addItem("- Product Search", "search.asp");
		
		// menu : 4
		var menu4 = ms.addMenu(document.getElementById("menu4"));
		menu4.addItem("- Enterprise Honor", "Honor.asp");
		menu4.addItem("- Company Image", "Img.asp");
		
		// menu : 5
		var menu5 = ms.addMenu(document.getElementById("menu5"));
	

		// menu : 6
		var menu6 = ms.addMenu(document.getElementById("menu6"));
		menu6.addItem("- Recruitment", "Job.asp");
		menu6.addItem("- Talent Strategy", "Jobs.asp");		
			
		// menu : 7
		var menu7 = ms.addMenu(document.getElementById("menu7"));
		menu7.addItem("- Member Center", "Server.asp");
		menu7.addItem("- Information Feedback", "Feedback.asp");
		menu7.addItem("- Message Center", "NetBook.asp");
		menu7.addItem("- Order Inquery", "E_shop.asp");		
	
		mtDropDown.renderAll();
	}

