
	if (mtDropDown.isSupported()) {

		var ms = new mtDropDownSet(mtDropDown.direction.down, 0, 0, mtDropDown.reference.bottomLeft);
		// menu : 1
		var menu1 = ms.addMenu(document.getElementById("menu1"));
		menu1.addItem("&nbsp;Profile", "about.asp");
		menu1.addItem("&nbsp;company structure", "zcfc.asp");
	

		// menu : 2
		var menu2 = ms.addMenu(document.getElementById("menu2"));
		menu2.addItem("&nbsp;Company news", "news2.asp");
		

		// menu : 3
		var menu3 = ms.addMenu(document.getElementById("menu3"));
		menu3.addItem("&nbsp;New products", "prorcmd.asp");


		// menu : 7
		var menu7 = ms.addMenu(document.getElementById("menu7"));
		menu7.addItem("&nbsp;Service objective", "service.asp");
		menu7.addItem("&nbsp;Sales network", "xswd.asp");
		menu7.addItem("&nbsp;Advice mailbox", "jyxx.asp");
                menu7.addItem("&nbsp;Order online", "order.asp");
		
		// menu : 8
		var menu8 = ms.addMenu(document.getElementById("menu8"));
                menu8.addItem("&nbsp;Recruitment", "job.asp");
		
		mtDropDown.renderAll();
	}
