	// 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 menu 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 :Company Profile
		var menu2 = ms.addMenu(document.getElementById("menu2"));
		menu2.addItem("Our History", "/htdocs/en/introduction_history.asp"); // send no URL if nothing should happen onclick
		menu2.addItem("Our Mission", "/htdocs/en/introduction_mission.asp"); // send no URL if nothing should happen onclick
		menu2.addItem("Our Speciality", "/htdocs/en/introduction_speciality.asp");
		menu2.addItem("Our Clients", "/htdocs/en/introduction_clients.asp");
		menu2.addItem("Our Targets", "/htdocs/en/introduction_targets.asp");
		menu2.addItem("Our Culture", "/htdocs/en/introduction_culture.asp");
		menu2.addItem("Our Organization Structure", "/htdocs/en/introduction_structure.asp");
				
		

		// menu : Scope of Services 

		var menu3 = ms.addMenu(document.getElementById("menu3"));
		menu3.addItem("Document Translation <br> between Chinese and English", "/htdocs/en/service.asp#docu");
		menu3.addItem("Interpretation Service", "/htdocs/en/service.asp#inter");
		menu3.addItem("Website Translation/Localization", "/htdocs/en/service.asp#web");
		menu3.addItem("Consultancy Services for <br> Sino-foreign Cooperation Project", "/htdocs/en/service.asp#sino");
		menu3.addItem("International Image Design <br> for Chinese Enterprises", "/htdocs/en/service.asp#design");
		menu3.addItem("Engineering Management <br> Software Development", "/htdocs/en/service.asp#soft");
		menu3.addItem("Book Translation and Publishing", "/htdocs/en/service.asp#book");
		menu3.addItem("Advanced English Training", "/htdocs/en/service.asp#train");

		// menu:Achievements
		var menu4 = ms.addMenu(document.getElementById("menu4"));
		menu4.addItem("Whole-scope Translation/Interpretation <br>Service for Large-scale Sino-foreign <br>Cooperation Project", "/htdocs/achievement/list2.asp?t_id=40");
		menu4.addItem("Translation and Consultancy Service", "/htdocs/achievement/list2.asp?t_id=41");
		menu4.addItem("Sino-foreign Cooperation<br> Projects Participated", "/htdocs/achievement/list2.asp?t_id=42");
		menu4.addItem("Magnum Opus", "/htdocs/achievement/list2.asp?t_id=43");
		menu4.addItem("Cliens", "/htdocs/achievement/list2.asp?t_id=44");

		// menu:Quality
		var menu5 = ms.addMenu(document.getElementById("menu5"));
		menu5.addItem("SUNTHER's Definition on Exellence", "/htdocs/en/quality_assure.asp");
		menu5.addItem("Quality Management Procedure", "/htdocs/en/quality_process.asp");
		

		

		//==================================================================================================
		// write drop downs into page
		//==================================================================================================
		// this method writes all the HTML for the menu into the page with document.write(). It must be
		// called within the body of the HTML page.
		//==================================================================================================
		mtDropDown.renderAll();
	}


