function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("clubid", "The Club", "The BMW M1 Club e.V. welcomes you to find out about it...",  null, null);
	menu.addItem("veranstid", "Events", "Events of the past years",  null, null);
	menu.addItem("clubinternid", "Clubinternal", "Private Area of the BMW M1 Club e.V. - Members only",  null, null);
	menu.addItem("mitgliedid", "Membership", "Advantages of being and how to become a member",  null, null);
	menu.addItem("historid", "History", "Looking back at the history of the BMW M1 on road and track",  null, null);
	menu.addItem("galerieid", "Galleries", "Looking back at the galleries of the BMW M1 events",  null, null);
	menu.addItem("kontaktid", "Contact", "Contact us",  null, null);
	menu.addItem("linksid", "Links", "Links",  null, null);
	
	menu.addSubItem("clubid", "Club History", "The history of the BMW M1 Clubs e.V.",  "club_history.html");
	menu.addSubItem("clubid", "The Club today", "Presentation of the BMW M1 Club e.V. today",  "club.html");
	
	menu.addSubItem("veranstid", "M1 Register Report", "M1 Register Report",  "../english/M1_25th_Anniversary.html");
	menu.addSubItem("veranstid", "Latest News", "What is on schedule...",  "latest_news.html");
	menu.addSubItem("veranstid", "Event Reports", "Reports of the past events",  "events.html");
	
	menu.addSubItem("clubinternid", "Production List", "All the BMW M1s ever built and where they are today",  "members_only.html");
	menu.addSubItem("clubinternid", "Discussion Forum", "Aggregated Experience of clubmembers for clubmembers",  "members_only.html");
	menu.addSubItem("clubinternid", "Members List", "Addresses of all members of the BMW M1 Club e.V.",  "members_only.html");
	menu.addSubItem("clubinternid", "Meetings' Agreements", "Official results of members meetings",  "members_only.html");

	menu.addSubItem("mitgliedid", "Bylaws", "Bylaws of the BMW M1 Club",  "bylaws.html");
	menu.addSubItem("mitgliedid", "Membership", "Information concerning membership and application form",  "membership.html");
	menu.addSubItem("mitgliedid", "Membership Form", "How to order Your membership form",  "membership_form.html");

	menu.addSubItem("historid", "Technology", "The technology of the BMW M1 in detail",  "technology.html");
	menu.addSubItem("historid", "M1 Road Version", "The first pure race-car for the road",  "road_versions.html");
	menu.addSubItem("historid", "M1 Race Version", "The BMW M1 for the Groups 4, 5 and as Procar",  "race_versions.html");
	menu.addSubItem("historid", "The M1 at Le Mans", "A Concise History of the BMW M1 at Le Mans",  "The_BMW_M1_at_Le_Mans.html");
	menu.addSubItem("historid", "M1 Artcar", "Andy Warhol's BMW M1",  "artcar.html");	
	menu.addSubItem("historid", "Derivates", "Strange relatives of the BMW M1",  "derivates.html");
	menu.addSubItem("historid", "Contemporary Witnesses", "Contemporary Witnesses for the BMW M1",  "../english/ContemporaryWitnesses/Walter_Maurer_Text.html");
	
	menu.addSubItem("galerieid", "Hockenheim 2010", "Bilder und Eindrücke aus Hockenheim...",  "../deutsch/treffen/webgalerie_hockenheim_2010/index.html");
	menu.addSubItem("galerieid", "Coburg 2009", "Bilder und Eindrücke aus Coburg...",  "../deutsch/treffen/webgalerie_coburg/index.html");
	menu.addSubItem("galerieid", "Hockenheim 2008", "Bilder und Eindrücke aus Hockenheim...",  "../deutsch/treffen/webgalerie_hockenheim_2008/index.html");	
	menu.addSubItem("galerieid", "München 2008", "Bilder und Eindrücke aus München...",  "../deutsch/treffen/webgalerie_muenchen/index.html");
	menu.addSubItem("galerieid", "Knokke 2007", "Pictures from the meeting in Knokke",  "../english/meetings/webgalerie_knokke_heist/index.html")
	menu.addSubItem("galerieid", "Hamburg 2006", "Pictures from the meeting in Hamburg",  "../english/meetings/webgalerie_hamburg/index.html")
	menu.addSubItem("galerieid", "Brissago 2005", "Pictures from the meeting in Brissago",  "../english/meetings/webgalerie_brissago/index.html");
	menu.addSubItem("galerieid", "Nürburgring 2005", "Pictures from Nürburgring ",  "../english/meetings/webgalerie_nuerburgring/index.html");
	menu.addSubItem("galerieid", "Lime Rock 2004", "Pictures from the meeting in Lime Rock",  "../english/meetings/webgalerie_Lime_Rock/index.html");
	menu.addSubItem("galerieid", "Trier 2004 ", "Pictures from the meeting in Trier",  "../english/meetings/webgalerie_trier/index.html");
	menu.addSubItem("galerieid", "Landsberg 2003", "Pictures from the meeting in Landsberg",  "../english/meetings/webgalerie_landsberg/index.html");
	menu.addSubItem("galerieid", "Dessau 2002", "Pictures from the meeting in Dessau",  "../english/meetings/webgalerie_dessau/index.html");
	
	
	menu.addSubItem("kontaktid", "Contact Us", "We are looking forward to hearing from You..",  "http://www.bmw-m1.de/english/form.html");
	menu.addSubItem("kontaktid", "masthead", "Imprint",  "../english/masthead.html");
	
	menu.addSubItem("linksid", "Links", "Links",  "../english/Links/links.html");
	menu.showMenu();
}