	if (mtDropDown.isSupported()) {

		var ms = new mtDropDownSet(mtDropDown.direction.down, 0, 0, mtDropDown.reference.bottomLeft);

		var menu1 = ms.addMenu(document.getElementById("menu1"));
		menu1.addItem("- 公司履历","gsll.asp"); // send no URL if nothing should happen onclick
		menu1.addItem("- 经营理念","jyll.asp"); // send no URL if nothing should happen onclick
		menu1.addItem("- 企业证书","qyzs.asp");
		menu1.addItem("- 组织架构","zzjg.asp");
	
//第二菜单
		var menu2 = ms.addMenu(document.getElementById("menu2"));
		menu2.addItem("- 企业新闻", "news.asp"); 
		menu2.addItem("- 业内新闻", "yenews.asp"); // send no URL if nothing should happen onclick
	
		// menu : 3
		var menu3 = ms.addMenu(document.getElementById("menu3"));
		menu3.addItem("- 产品展示", "Product.asp");
		menu3.addItem("- 产品分类", "Products.asp");
		

		// menu : 6
		var menu6 = ms.addMenu(document.getElementById("menu6"));
		menu6.addItem("- 企业招聘", "Job.asp");
		menu6.addItem("- 人才策略", "Jobs.asp");		
			

	
		mtDropDown.renderAll();
	}

