function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location, linktarget);

	menu = new Menu();
	menu.addItem("homeid", "Home", "Home", null, null);
        menu.addItem("productsid", "Products", "Products", null, null);
        menu.addItem("projectsid", "Projects", "Projects", "projects.htm", "");
        menu.addItem("contactid", "Contact", "Contact", "contact.htm", "");
	
	menu.addSubItem("homeid", "MaxCargo BV", "MaxCargo BV", "index.htm", "");
	menu.addSubItem("homeid", "MaxControl BV", "MaxControl BV", "http://www.nautimax.com/maxcontrol/default.htm", "_blank");

	menu.addSubItem("productsid", "Lashings", "Lashings", "lashings.htm", "");
	menu.addSubItem("productsid", "Inflatables", "Inflatables", "inflatables.htm", "");
	menu.addSubItem("productsid", "Measuring systems", "Measuring systems", "http://www.nautimax.com/maxcontrol/default.htm", "_blank");
	menu.addSubItem("productsid", "Cargo Care Training", "Cargo Care Training", "cargocare.htm", "");

menu.showMenu();
}