	// 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 :公司介绍
		var menu2 = ms.addMenu(document.getElementById("menu2"));
		menu2.addItem("我们的历史", "/htdocs/chs/introduction_history.asp"); // send no URL if nothing should happen onclick
		menu2.addItem("我们的理念", "/htdocs/chs/introduction_mission.asp"); // send no URL if nothing should happen onclick
		menu2.addItem("我们的专长领域", "/htdocs/chs/introduction_speciality.asp");
		menu2.addItem("我们的客户", "/htdocs/chs/introduction_clients.asp");
		menu2.addItem("我们的发展目标", "/htdocs/chs/introduction_targets.asp");
		menu2.addItem("我们的文化", "/htdocs/chs/introduction_culture.asp");
		menu2.addItem("我们的组织架构", "/htdocs/chs/introduction_structure.asp");
				
		

		// menu : 经营范围 

		var menu3 = ms.addMenu(document.getElementById("menu3"));
		menu3.addItem("文献翻译", "/htdocs/chs/service.asp#docu");
		menu3.addItem("英语口译", "/htdocs/chs/service.asp#inter");
		menu3.addItem("网站本地化", "/htdocs/chs/service.asp#web");
		menu3.addItem("涉外合作项目咨询服务", "/htdocs/chs/service.asp#sino");
		menu3.addItem("中国企业国际规范形象设计", "/htdocs/chs/service.asp#design");
		menu3.addItem("工程管理软件开发", "/htdocs/chs/service.asp#soft");
		menu3.addItem("译著出版", "/htdocs/chs/service.asp#book");
		menu3.addItem("高级英语培训", "/htdocs/chs/service.asp#train");

		// menu:业绩展示
		var menu4 = ms.addMenu(document.getElementById("menu4"));
		menu4.addItem("大型涉外工程翻译总承包", "/htdocs/achievement/list1.asp?t_id=33");
		menu4.addItem("翻译咨询服务", "/htdocs/achievement/list1.asp?t_id=31");
		menu4.addItem("参与的大型涉外工程", "/htdocs/achievement/list1.asp?t_id=34");
		menu4.addItem("优秀译著代表作品", "/htdocs/achievement/list1.asp?t_id=35");
		menu4.addItem("客户名录", "/htdocs/achievement/list1.asp?t_id=36");

		// menu:质量管理 
		var menu5 = ms.addMenu(document.getElementById("menu5"));
		menu5.addItem("质量保证体系", "/htdocs/chs/quality_assure.asp");
		menu5.addItem("项目运作流程", "/htdocs/chs/quality_process.asp");
		

		// menu : 欢迎加盟
		var menu7 = ms.addMenu(document.getElementById("menu7"));
		menu7.addItem("招聘职位", "/htdocs/job/career_job.asp");
	    menu7.addItem("译员登记", "/htdocs/job/career_regist.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();
	}
