function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("homeid", "Home", "Back to the starting screen", "../page/bottom.htm", null);
	menu.addItem("statusid", "Status", "The developments on my Bonito",  null, null);
	menu.addItem("infoid", "Info", "Information about my FT-Bonito",  null, null);
	menu.addItem("gallerid", "Gallery", "Look at the pictures",  null, null);
	menu.addItem("linksid", "Links", "Some interesting Links", "../info/links.htm", null);
	menu.addItem("mailid", "E-Mail", "E-Mail Owner", "mailto:bert@ftbonito.com", null);
	menu.addItem("gastid", "Guestbook", "Look into or sign my guestbook", null, null);

	menu.addSubItem("statusid", "June 2004", "The status on june 2004",  "../photopage1/page_01.htm");
	menu.addSubItem("statusid", "16 July 2001", "The status on 16 July 2001", "../status/160701.htm");
	menu.addSubItem("statusid", "24 June 2001", "The status on 24 June 2001", "../status/240601.htm");
	menu.addSubItem("statusid", "06 May 2001", "The status on 06 May 2001", "../status/060501.htm");
	menu.addSubItem("statusid", "25 February 2001", "The status on 25 February 2001",  "../status/250201.htm");
	menu.addSubItem("statusid", "19 July 2000", "The status on 19 July 2000",  "../status/190700.htm");
	menu.addSubItem("statusid", "05 July 2000", "The status on 05 July 2000",  "../status/050700.htm");
	menu.addSubItem("statusid", "29 May 2000", "The status on 29 May 2000",  "../status/290500.htm");
	menu.addSubItem("statusid", "13 March 2000", "The status on 13 March 2000",  "../status/130300.htm");
	menu.addSubItem("statusid", "03 March 2000", "The status on 03 March 2000",  "../status/030300.htm");
	
	menu.addSubItem("infoid", "History", "The history of my Bonito",  "../info/hist.htm");
	menu.addSubItem("infoid", "Tech info", "Technical info of my Bonito",  "../info/tech.htm");

	menu.addSubItem("gallerid", "Before the first resto", "See how she looked like before the first resto",  "../before/before01.htm");
	menu.addSubItem("gallerid", "The first resto", "Pictures of the first resto",  "../first/first01.htm");
	menu.addSubItem("gallerid", "After first resto", "Pictures after the first resto",  "../after/after01.htm");
	menu.addSubItem("gallerid", "Engine change", "The change from a 4 to a 6 cylinder engine",  "../engine/engine01.htm");
	menu.addSubItem("gallerid", "New taillights", "The change from Hella to the Corvette taillights",  "../taill/taill01.htm");
	menu.addSubItem("gallerid", "New Custom tranny", "The change to a Custom tranny",  "../tranny/tranny01.htm");
	menu.addSubItem("gallerid", "The Bonito of Alan", "The Bonito from the UK",  "../alan/alan01.htm");
	menu.addSubItem("gallerid", "Other Bonitos", "See FT-Bonitos and Kitcars from other owners", "../bonitos/bonitos.htm");
	menu.addSubItem("gallerid", "My other dream", "My American Dream",  "../cuda/cuda01.htm");

	menu.addSubItem("gastid", "Look into my guestbook", "Look into my guestbook",  "http://callisto.guestworld.com/wgb/wgbview.dbm?owner=bertdevr");
	menu.addSubItem("gastid", "Sign my guestbook", "Sign my guestbook",  "http://callisto.guestworld.com/wgb/wgbsign.dbm?owner=bertdevr");

	menu.showMenu();
}
