	// 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 --------------------
		var menu1 = ms.addMenu(document.getElementById("menu1"));
		menu1.addItem("企 業 資 料", "");
		menu1.addItem("業 務 運 作", "");
		menu1.addItem("競 爭 優 勢", "");
		menu1.addItem("增 長 策 略", "");
		
		//==================================================================================================

		//==================================================================================================
		// add a sub-menu
		//==================================================================================================
		// to add a sub menu to an existing menu object, call it's addMenu method and pass it the item from
		// the parent menu which should act as it's actuator. To add a submenu to the fourth item of a menu
		// called "theMenu", you would do theMenu.addMenu(theMenu.items[3])
		//==================================================================================================
		var subMenu1 = menu1.addMenu(menu1.items[0]);
		subMenu1.addItem("企 業 簡 介", "");
		subMenu1.addItem("股 東 架 構", "");
		subMenu1.addItem("管 理 層 架 構", "");
		subMenu1.addItem("公 司 認 證 嘉 許", "");
		
		var subMenu1 = menu1.addMenu(menu1.items[1]);
		subMenu1.addItem("馬 口 鐵 罐 包 裝 業 務", "");
		subMenu1.addItem("塗 黃 及 印 刷 業 務", "");
		subMenu1.addItem("生 產 基 地", "");
		subMenu1.addItem("生 產 過 程", "");
		
		var subMenu1 = menu1.addMenu(menu1.items[2]);
		subMenu1.addItem("領 導 地 位", "");
		subMenu1.addItem("著 名 客 戶", "");
		subMenu1.addItem("策 略 性 位 置", "");

		var subMenu1 = menu1.addMenu(menu1.items[3]);
		subMenu1.addItem("未 來 計 劃", "");

		//----------MENU 2 --------------------

		var menu2 = ms.addMenu(document.getElementById("menu2"));
		menu2.addItem("公 告", "../announcement.php?lang=cht");
		menu2.addItem("新 聞 稿", "../press_release.php?lang=cht");
		menu2.addItem("業 績 報 告", "../financial_reports.php?lang=cht");
		menu2.addItem("分 析 員 報 告", "");
		menu2.addItem("報 價", "../stock_quote.php?lang=cht");
		
		
		//----------MENU 3 --------------------
/*		var menu3 = ms.addMenu(document.getElementById("menu3"));
		menu3.addItem("View Company Video", "");
*/


		//----------MENU 4 --------------------
/*
		var menu4 = ms.addMenu(document.getElementById("menu4"));
		menu4.addItem("Send email to us", "");
*/
		/*
		var menu2 = ms.addMenu(document.getElementById("menu2"));
		menu2.addItem("Updates","http://www.highend3d.com/maya/");
		menu2.addItem("Forums", "/boards/index.php?Cat=1,2");
		menu2.addItem("Hardware Tests", "/tests/maya/");
		menu2.addItem("List Servers", "/listserver/");
		menu2.addItem("Mel Scripts", "/maya/mel/");
		menu2.addItem("Plugins", "/maya/plugins/");
		menu2.addItem("PaintFX Brushes", "/maya/paintfx/");
		menu2.addItem("PaintFX FAQ", "/maya/tutorials/#171");
		menu2.addItem("Shaders", "/maya/shaders/");
		menu2.addItem("Test Center", "/tests/maya/testcenter/");
		menu2.addItem("Tips/Tutorials", "/maya/tutorials/");
		menu2.addItem("Tools", "/maya/tools/");
		menu2.addItem("Users Links", "/maya/users/");
		menu2.addItem("AWGUA", "/awgua/");
		menu2.addItem("Videos", "");
		
		var subMenu2 = menu2.addMenu(menu2.items[3]);
		subMenu2.addItem("Subscribe/Unsubscribe", "/maya/listserver/");    
    subMenu2.addItem("List Interface", "/maya/archive/" );
    subMenu2.addItem("Game Interface", "/maya/gamearchive/");
    subMenu2.addItem("Dev Interface", "/maya/devarchive/" );
    
    var subMenu3 = menu2.addMenu(menu2.items[14]);
    subMenu3.addItem("Gnomon Workshop", "http://www.the-gnomon-workshop.com");
    subMenu3.addItem("Mesmer Video Tutorials", "http://www.mesmer.com/public/readpubartcom.php?in=1032");    
    
    var menu3 = ms.addMenu(document.getElementById("menu3"));
    menu3.addItem("Updates","http://www.highend3d.com/xsi/");
		menu3.addItem("Forums", "/boards/index.php?Cat=1,3");
		menu3.addItem("List Servers", "/xsi/listserver/");
		menu3.addItem("List Server Archives", "/xsi/archive/");
		menu3.addItem("Plugins", "/xsi/plugins/");
		menu3.addItem("Scripts", "/xsi/scripts/");
		menu3.addItem("Shaders", "/xsi/shaders/");
		menu3.addItem("Tips/Tutorials", "/xsi/tutorials/");
		menu3.addItem("Tools", "/xsi/tools/");
		menu3.addItem("Users Links", "/xsi/users/");
		menu3.addItem("Videos", "");
*/

		//==================================================================================================
		// 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();
	}

