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",  "es-english/company/intro.html");
	menu.addSubItem("OurCompany", "Location", "Location",  "es-english/company/location.html");



	menu.addSubItem("Support", "Service", "Service",  "es-english/support/service.html");
	menu.addSubItem("Support", "Personnel & Technique", "Personnel & Technique",  "es-english/support/tech.html");


	menu.addSubItem("Product", "Aluminium RollerShutte", "Aluminium RollerShutte",  "es-english/product/rollershutter.html");
	menu.addSubItem("Product", "Aluminium Door", "Aluminium Door",   "es-english/product/AluDoor.html");
    menu.addSubItem("Product", "Window Blind", "Window Blind",   "es-english/product/WindowBlind.html");
	menu.addSubItem("Product", "Fabric Product", "Fabric Product",  "es-english/product/Fabric.html");
    



	menu.addSubItem("Promotion", "Project", "Project",  "es-english/adv/project.html");
	menu.addSubItem("Promotion", "ES News", "ES News",  "es-english/adv/report.html");
	

	
	
	

	menu.showMenu();
}