	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 company", " about.asp"); // send no URL if nothing should happen onclick
		menu1.addItem("- The culture of the company", " gswh.asp"); // send no URL if nothing should happen onclick
		menu1.addItem("- Business enterprise honor", " Honor.asp");
		menu1.addItem("- Contact we", " Contact.asp");	
	
// Two menu
		var menu2 = ms.addMenu(document.getElementById("menu2"));
		menu2.addItem("- Business enterprise news", " news.asp"); 
		menu2.addItem("- Raw material price trend", " yenews.asp"); // send no URL if nothing should happen onclick
	
		// menu : 3
		var menu3 = ms.addMenu(document.getElementById("menu3"));
		menu3.addItem("- Product demonstration", " Product.asp");
		menu3.addItem("- Product classification", " Products.asp");
		
		// menu : 4
		
		
		// menu : 5
		

		// menu : 6
		var menu6 = ms.addMenu(document.getElementById("menu6"));
		menu6.addItem("- Job advertisement", " Job.asp");
		menu6.addItem("- Talented person's 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 search", " E_shop.asp");		
	
		mtDropDown.renderAll();
	}

