	if (mtDropDown.isSupported()) {

		var ms = new mtDropDownSet(mtDropDown.direction.down, 0, 0, mtDropDown.reference.bottomLeft);

		var menu1 = ms.addMenu(document.getElementById("menu1"));
		menu1.addItem("- About Us","about.asp"); // send no URL if nothing should happen onclick
		menu1.addItem("- Contact Us","Contact.asp");	
	
//µÚ¶þ²Ëµ¥
		var menu2 = ms.addMenu(document.getElementById("menu2"));
		menu2.addItem("- Ours", "news.asp"); 
		menu2.addItem("- Industry", "yenews.asp"); // send no URL if nothing should happen onclick
	
		// menu : 3
		var menu3 = ms.addMenu(document.getElementById("menu3"));
		menu3.addItem("- Products", "Product.asp");
		menu3.addItem("- Sorts", "Products.asp");
	    menu3.addItem("- Searching", "search.asp");
		
				

		
		// menu : 7
		var menu7 = ms.addMenu(document.getElementById("menu7"));
		menu7.addItem("- Members", "Server.asp");
		menu7.addItem("- Feedback", "Feedback.asp");
		menu7.addItem("- Notebook", "NetBook.asp");
		
	
		mtDropDown.renderAll();
	}
