	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--", "e-company.asp");
		menu1.addItem("  --Culture--", "e-culture.asp");
		menu1.addItem("  --Factory--", "e-factory.asp");	
		menu1.addItem("  --Honor--", "e-honor.asp");

		var menu2 = ms.addMenu(document.getElementById("menu2"));
		menu2.addItem("  Stainless steel kettel", "e-product.asp?class=001");
		menu2.addItem("  Computer kettel", "e-product.asp?class=002");
		menu2.addItem("  Plastic kettel", "e-product.asp?class=003");		
		menu2.addItem("  Tea maker", "e-product.asp?class=004");		
		menu2.addItem("  Coffee maker", "e-product.asp?class=005");
		menu2.addItem("  Blender", "e-product.asp?class=006");
		menu2.addItem("  Electric water heater", "e-product.asp?class=008");		
		menu2.addItem("  Others", "e-product.asp?class=007");

		mtDropDown.renderAll();
	}
