function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("OurCompany", "OurCompany", "OurCompany",  null, null);
	menu.addItem("Support", "Support", "Support",  null, null);
	menu.addItem("Product", "Product", "Product",  null, null);
	menu.addItem("Promotion", "Promotion", "Promotion",  null, null);
	


	menu.addSubItem("OurCompany", "HomePage", "HomePage",  "../../index.html");
	menu.addSubItem("OurCompany", "Introduction", "Introduction",  "../company/intro.html");
	menu.addSubItem("OurCompany", "Location", "Location",  "../company/location.html");



	menu.addSubItem("Support", "Service", "Service",  "../support/service.html");
	menu.addSubItem("Support", "Personnel & Technique", "Personnel & Technique",  "../support/tech.html");


	menu.addSubItem("Product", "Aluminium RollerShutter", "Aluminium RollerShutter",  "../product/rollershutter.html");
	menu.addSubItem("Product", "Aluminium Door", "Aluminium Door",   "../product/AluDoor.html");
    menu.addSubItem("Product", "Window Blind", "Window Blind",   "../product/WindowBlind.html");
	menu.addSubItem("Product", "Fabric Product", "Fabric Product",  "../product/Fabric.html");
    



	menu.addSubItem("Promotion", "Project", "Project",  "../adv/project.html");
	menu.addSubItem("Promotion", "ES News", "ES News",  "../adv/report.html");
	


	
	

	menu.showMenu();
}