	// set up drop downs anywhere in the body of the page. I think the bottom of the page is better.. 

	// but you can experiment with effect on loadtime.

	if (mtDropDown.isSupported()) {



		//==================================================================================================

		// create a set of dropdowns

		//==================================================================================================

		// the first param should always be down, as it is here

		//

		// The second and third param are the top and left offset positions of the menus from their actuators

		// respectively. To make a menu appear a little to the left and bottom of an actuator, you could use

		// something like -5, 5

		//

		// The last parameter can be .topLeft, .bottomLeft, .topRight, or .bottomRight to inidicate the corner

		// of the actuator from which to measure the offset positions above. Here we are saying we want the 

		// menu to appear directly below the bottom left corner of the actuator

		//==================================================================================================

		var ms = new mtDropDownSet(mtDropDown.direction.down, 0, 0, mtDropDown.reference.bottomLeft);



		//==================================================================================================

		// create a dropdown menu

		//==================================================================================================

		// the first parameter should be the HTML element which will act actuator for the menu

		//==================================================================================================

		//----------MENU 1 --------------------



		//----------MENU 2 --------------------





		//----------MENU 3 --------------------



		var menu3 = ms.addMenu(document.getElementById("menu3"));

		menu3.addItem("本會宗旨", "objective.php");

		menu3.addItem("第十四屆理事會及職員表 (2009-2012)", "officebearer.php");



		

		//----------MENU 4 --------------------

		

		var menu4 = ms.addMenu(document.getElementById("menu4"));

		menu4.addItem("摘錄", "handbook_main.php");

		menu4.addItem("皮革的來源", "handbook_1.php");

		menu4.addItem("皮革處理", "handbook_2.php");

		menu4.addItem("貿易實務", "handbook_3.php");

		menu4.addItem("與皮革相關的行業", "handbook_4.php");

		menu4.addItem("附錄", "handbook_5.php");

		

		//----------MENU 5 --------------------

		

		var menu5 = ms.addMenu(document.getElementById("menu5"));

		menu5.addItem("參考指南", "");

		menu5.addItem("Reference Guide", "");

		

		var subMenu5 = menu5.addMenu(menu5.items[0]);

		subMenu5.addItem("摘錄", "eco-tech_cmain.php");

		subMenu5.addItem("簡介", "eco-tech_c0.php");

		subMenu5.addItem("第一章", "eco-tech_c1.php");

		subMenu5.addItem("第二章", "eco-tech_c2.php");

		subMenu5.addItem("第三章", "eco-tech_c3.php");

		subMenu5.addItem("第四章", "eco-tech_c4.php");

		subMenu5.addItem("第五章", "eco-tech_c5.php");

		subMenu5.addItem("第六章", "eco-tech_c6.php");

		subMenu5.addItem("附錄", "eco-tech_c7.php");

		

		var subMenu5 = menu5.addMenu(menu5.items[1]);

		subMenu5.addItem("Index", "eco-tech_emain.php");

		subMenu5.addItem("Introduction", "eco-tech_e0.php");

		subMenu5.addItem("Section 1", "eco-tech_e1.php");

		subMenu5.addItem("Section 2", "eco-tech_e2.php");

		subMenu5.addItem("Section 3", "eco-tech_e3.php");

		subMenu5.addItem("Section 4", "eco-tech_e4.php");

		subMenu5.addItem("Section 5", "eco-tech_e5.php");

		subMenu5.addItem("Section 6", "eco-tech_e6.php");

		subMenu5.addItem("Appendix", "eco-tech_e7.php");

		

		//----------MENU 6 --------------------

		

		var menu6 = ms.addMenu(document.getElementById("menu6"));

		menu6.addItem("中文版本", "member_chi.php");

		menu6.addItem("English Version", "member_eng.php");







		//==================================================================================================

		// write drop downs into page

		//==================================================================================================

		// this method writes all the HTML for the menus into the page with document.write(). It must be

		// called within the body of the HTML page.

		//==================================================================================================

		mtDropDown.renderAll();

	}

