function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("canal", "The French Midi Canal", "",  null, null);
	menu.addItem("histoire", "History", "",  null, null);
	menu.addItem("galerie", "Virtual gallery", "",  null, null);
	menu.addItem("decouvrir", "Discover", "",  null, null);
	menu.addItem("terre", "The Canal, country...", "",  null, null);
	menu.addItem("savoir", "Further information", "",  null, null);
	menu.addItem("contact", "Contacts", "",  null, null);

	menu.addSubItem("galerie", "Photos (FR)", "",  "http://www.canalmidi.com/photos.html");
	menu.addSubItem("galerie", "Paintings (FR)", "",  "http://www.canalmidi.com/palette.html");
	menu.addSubItem("galerie", "Old postcards (FR)", "",  "http://www.canalmidi.com/photanci.html");
	menu.addSubItem("galerie", "Virtual postcards (FR)", "Send a free virutal postcard",  "http://www.canalmidi.com/carte.html");

	menu.addSubItem("canal", "English index", "",  "indexgb.html");
	menu.addSubItem("canal", "French index", "",  "../index.html");
	menu.addSubItem("canal", "Description and line", "",  "canalgb.html");
	menu.addSubItem("canal", "Engineering works", "",  "ouvraggb.html");
	menu.addSubItem("canal", "Locks", "",  "eclusegb.html");
	menu.addSubItem("canal", "Filling the Canal with water", "",  "alimeaugb.html");
	menu.addSubItem("canal", "The Canal employees", "",  "eclusiergb.html");

	menu.addSubItem("histoire", "The Canal construction", "",  "historgb.html");
	menu.addSubItem("histoire", "Chronology", "",  "chronologieGB.html");
	menu.addSubItem("histoire", "Pierre Paul Riquet", "",  "paulrigb.html");
	menu.addSubItem("histoire", "The post barge", "",  "barcpostgb.html");

	menu.addSubItem("decouvrir", "Along the water", "",  "penicheGB.html");
	menu.addSubItem("decouvrir", "By mountain bike", "",  "vttgb.html");
	menu.addSubItem("decouvrir", "On your blades", "",  "rollergb.html");
	menu.addSubItem("decouvrir", "Cycle tracks", "",  "pistecycgb.html");
	menu.addSubItem("decouvrir", "Round and about", "",  "avisitergb.html");

	menu.addSubItem("savoir", "Rent a boat", "",  "LocationGB.htm");
	menu.addSubItem("savoir", "Selected accommodation", "",  "partenarhebergGB.html");
	menu.addSubItem("savoir", "Reserve a day cruise", "",  "batosolgb.html");
	menu.addSubItem("savoir", "Discover the Canal on a bike", "",  "guidegb.html");
	menu.addSubItem("savoir", "Languedoc wines", "",  "vinsgb.html");
	menu.addSubItem("savoir", "Translation", "",  "traduct.html");
	menu.addSubItem("savoir", "Search engine", "",  "farfouineurGB.html");	
	menu.addSubItem("savoir", "Documents (FR)", "",  "http://www.canalmidi.com/biblio.html");
	menu.addSubItem("savoir", "Links (FR)", "",  "http://www.canalmidi.com/liens.html");
	menu.addSubItem("savoir", "Addresses (FR)", "",  "../adresses.html");


	menu.addSubItem("terre", "Wines", "",  "vinsgb.html");
	menu.addSubItem("terre", "Cathars", "",  "catharegb.html");
	menu.addSubItem("terre", "Gastronomy (FR)", "",  "http://www.canalmidi.com/terrede/gastrono.html");
	menu.addSubItem("terre", "Rugby (FR)", "",  "http://www.canalmidi.com/terrede/rugby.html");

	menu.addSubItem("contact", "Email", "",  "courriergb.php");

	menu.showMenu();
}