function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("emt", " ", " ",  null, null);
	menu.addItem("build", "Building & Construction", "Building & Construction",  null, null);
	menu.addItem("projman", "Project management", "Project management",  null, null);
	menu.addItem("propman", "Property management", "Property management",  null, null);
	menu.addItem("webdes", "Internet web site design", "Internet web site design",  null, null);
	menu.addItem("contacts", "Contacts", "Contacts",  null, null);
	menu.addItem("aboutus", "About us", "About us",  null, null);
	menu.addItem("mt", " ", " ",  null, null);



	menu.addSubItem("projman", "Coordination", "Coordination",  "coordination_home.asp");
	menu.addSubItem("projman", "Our projects", "Our projects",  "projects.asp");
	menu.addSubItem("propman", "Garden maintenance", "Garden maintenance",  "prg_maintenance.asp");
	menu.addSubItem("propman", "Insurance", "Insurance",  "pr_insurance.asp");
	menu.addSubItem("projman", "Planning", "Planning",  "planning_home.asp");
	menu.addSubItem("projman", "Project management", "Project management",  "project_home.asp");
	menu.addSubItem("projman", " ", " ",  " ");



	menu.addSubItem("propman", "Property home", "Property home",  "property_home.asp");
	menu.addSubItem("propman", "Property maintenance", "Property maintenance",  "pr_maintenance.asp");
	menu.addSubItem("propman", "Property management", "Property management",  "pr_management.asp");
	menu.addSubItem("propman", "Sales", "Sales",  "pr_sales.asp");
	menu.addSubItem("propman", "Web marketing", "Web marketing",  "pr_webmarketing.asp");
	menu.addSubItem("propman", " ", " ",  " ");

	menu.addSubItem("build", "Building & Construction", "Building & Construction",  "building_home.asp");
      menu.addSubItem("build", "Conversions", "Conversions",  "conversions.asp");
	menu.addSubItem("build", "Extensions", "Extensions",  "extensions.asp");
	menu.addSubItem("build", "New works", "New works",  "new_works.asp");
        menu.addSubItem("build", "Renovations", "Renovations",  "renovations.asp");
        menu.addSubItem("build", "Restoration", "Restoration",  "restoration.asp");
        menu.addSubItem("build", "Exteriors", "Exteriors",  "exteriors.asp");
        menu.addSubItem("build", "Interiors", "Interiors",  "interiors.asp");
        menu.addSubItem("build", " ", " ",  " ");

	menu.addSubItem("webdes", "Building sites", "Building sites", "building_links.asp");
	menu.addSubItem("webdes", "Hosting", "Hosting",  "hosting.asp");
	menu.addSubItem("webdes", "Internet web site design", "Internet web site design",  "web_design.asp");
	menu.addSubItem("webdes", "Real estate", "Real estate",  "real_estate_links.asp");
	menu.addSubItem("webdes", " ", " ",  " ");

	menu.addSubItem("aboutus", "About us", "About us",  "about_us.asp");
	menu.addSubItem("aboutus", "e-mail", "e-mail",  "emails.asp");
	menu.addSubItem("aboutus", "Our aims", "Our aims",  "our_aims.asp");
	menu.addSubItem("aboutus", "Our Director", "Our Director",  "director.asp");
	menu.addSubItem("aboutus", " ", " ",  " ");


	menu.addSubItem("contacts", "Contacts", "Contacts",  "contacts.asp");
	menu.addSubItem("contacts", "e-mail", "e-mail",  "emails.asp");
	menu.addSubItem("contacts", " ", " ",  " ");




	menu.showMenu();
}