	if (mtDropDown.isSupported()) {

		var ms = new mtDropDownSet(mtDropDown.direction.down, 0, 0, mtDropDown.reference.bottomLeft);

		var menu1 = ms.addMenu(document.getElementById("menu1"));
		menu1.addItem("- 简介","History.asp"); // send no URL if nothing should happen onclick
		menu1.addItem("- 动态信息","otype.asp?owen1=中国户外联盟"); // send no URL if nothing should happen onclick
		menu1.addItem("- 相关链接","link.asp");
	
//第二菜单
		var menu2 = ms.addMenu(document.getElementById("menu2"));
		menu2.addItem("- 简介", "about.asp"); 
		menu2.addItem("- 动态信息", "otype.asp?owen1=HASH俱乐部"); // send no URL if nothing should happen onclick
		menu2.addItem("- 图片集锦", "Honor.asp"); 
	
		// menu : 3
		var menu3 = ms.addMenu(document.getElementById("menu3"));
		menu3.addItem("- 装备展示", "Product.asp");
		menu3.addItem("- 装备分类", "Products.asp");
	    menu3.addItem("- 装备搜索", "search.asp");
		
		// menu : 4
		var menu4 = ms.addMenu(document.getElementById("menu4"));
		menu4.addItem("- 简介", "Structure.asp");
		menu4.addItem("- 动态信息", "otype.asp?owen1=秦岭高山协作");
		menu4.addItem("- 图片集锦", "Img.asp");
		
			
		// menu : 7
		var menu7 = ms.addMenu(document.getElementById("menu7"));
		menu7.addItem("- 会员中心", "Server.asp");
		menu7.addItem("- 留言中心", "NetBook.asp");
		menu7.addItem("- 订单查询", "E_shop.asp");
		menu7.addItem("- 联系我们", "Contact.asp");
	
		mtDropDown.renderAll();
	}

 

