	// 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("Corporation Information", "");
		menu1.addItem("Business Operation", "");
		menu1.addItem("Our Strengths", "");
		menu1.addItem("Growth Strategy", "");
		
		//==================================================================================================

		//==================================================================================================
		// 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("Corporate Profile", "company_background.html");
		subMenu1.addItem("Shareholding Structure", "shareholder_structure.html");
		subMenu1.addItem("Management Structure", "management_structure.html");
		subMenu1.addItem("Company Accreditation", "accreditation.html");
		
		var subMenu1 = menu1.addMenu(menu1.items[1]);
		subMenu1.addItem("Tinplate Cans Packaging Business", "tinplate_cans.html");
		subMenu1.addItem("Lacquering & Printing Business", "lacquering.html");
		subMenu1.addItem("Production Facilities", "production_facilities.html");
		subMenu1.addItem("Production Process", "production_process.html");
		
		var subMenu1 = menu1.addMenu(menu1.items[2]);
		subMenu1.addItem("Leadership", "leadership.html");
		subMenu1.addItem("Renown Customers", "renown.html");
		subMenu1.addItem("Strategic Location", "strategic_location.html");

		var subMenu1 = menu1.addMenu(menu1.items[3]);
		subMenu1.addItem("Future Plan", "future_plan.html");

		//----------MENU 2 --------------------

		var menu2 = ms.addMenu(document.getElementById("menu2"));
		menu2.addItem("Announcement", "../announcement.php?lang=eng");
		menu2.addItem("Press Release", "../press_release.php?lang=eng");
		menu2.addItem("Financial Reports", "../financial_reports.php?lang=eng");
		menu2.addItem("Analyst Reports", "../analyst_reports.php?lang=eng");
		menu2.addItem("Stock Quote", "../stock_quote.php?lang=eng");
		
		
		//----------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();
	}
