function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("OurCompany", "爱我公司", "爱我公司",  null, null);
	menu.addItem("Support", "全面支持", "支持",  null, null);
	menu.addItem("Product", "产品介绍", "产品介绍",  null, null);
	menu.addItem("Promotion", "爱我宣传", "爱我宣传",  null, null);
	menu.addItem("Technology", "科普天地", "科普天地",  null, null);
	menu.addItem("Employment", "人才招聘", "人才招聘",  null, null);


	menu.addSubItem("OurCompany", "公司主页", "公司主页",  "index.html");
	menu.addSubItem("OurCompany", "公司简介", "公司简介",  "company/intro.html");
	menu.addSubItem("OurCompany", "公司位置", "公司位置",  "company/location.html");



	menu.addSubItem("Support", "服务", "服务",  "support/service.html");
	menu.addSubItem("Support", "技术", "技术",  "support/tech.html");
	menu.addSubItem("Support", "常见问题", "常见问题",  "faq/FAQ.html");


	menu.addSubItem("Product", "铝合金卷帘窗", "铝合金卷帘窗",  "product/rollershutter.html");
	menu.addSubItem("Product", "铝合金卷帘门", "铝合金卷帘门",   "product/AluDoor.html");
    menu.addSubItem("Product", "各类百叶窗", "各类百叶窗",   "product/WindowBlind.html");
	menu.addSubItem("Product", "聚丙烯晴纶类产品", "聚丙烯晴纶类产品",  "product/Fabric.html");
    



	menu.addSubItem("Promotion", "工程实例", "工程实例",  "adv/project.html");
	menu.addSubItem("Promotion", "爱我特讯", "爱我特讯",  "adv/report.html");
	

	menu.addSubItem("Technology", "新闻快讯", "新闻快讯",   "tech/NewTech.html");
	menu.addSubItem("Technology", "专家评论", "专家评论",   "tech/Specialist.html");
	
	menu.addSubItem("Employment", "人才招聘", "人才招聘",   "employment/employment.html");
	

	menu.showMenu();
}