function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("mainid", "About Alnmouth", "About Alnmouth",  null, null);
	menu.addItem("sleepingid", "Where to stay", "Where to stay",  null, null);
	menu.addItem("eatingid", "Eating & Drinking", "Eating & Drinking",  null, null);
	menu.addItem("othersid", "Relaxing", "Relaxing",  null, null);
	menu.addItem("generalid", "Miscellaneous", "Miscellaneous",  null, null);

	menu.addSubItem("mainid", "Site front page", "Site front page",  "default.htm");
	menu.addSubItem("mainid", "About Alnmouth", "About Alnmouth",  "about.htm");
        menu.addSubItem("mainid", "Getting to Alnmouth", "Getting to Alnmouth",  "travel.htm");
	menu.addSubItem("mainid", "Photo Album", "Photo Album",  "pics/index.htm");
	menu.addSubItem("mainid", "The Coast", "The Coast",  "coast.htm");
	menu.addSubItem("mainid", "The River Aln", "The River Aln",  "aln.htm");
	menu.addSubItem("mainid", "Village History", "Village History",  "history.htm");
	menu.addSubItem("mainid", "Village Shops", "Village Shops",  "shops.htm");
	menu.addSubItem("mainid", "Nearby Villages", "Nearby Villages",  "villages.htm");
	menu.addSubItem("mainid", "", "",  "");
			
	menu.addSubItem("sleepingid", "Bed and Breakfast", "Bed and Breakfast",  "beds.htm");
	menu.addSubItem("sleepingid", "Pubs and Inns", "Pubs and Inns",  "pubs.htm");
	menu.addSubItem("sleepingid", "Hotels", "Hotels",  "hotel.htm");
	menu.addSubItem("sleepingid", "Self Catering holiday cottages", "Self Catering holiday cottages",  "self_catering.htm");
	menu.addSubItem("sleepingid", "Caravan sites", "Caravan sites",  "caravan.htm");
	menu.addSubItem("sleepingid", "Camp sites", "Camp sites",  "camping.htm");
	menu.addSubItem("sleepingid", "Youth Hostels", "Youth Hostels",  "yha.htm");
	menu.addSubItem("sleepingid", "", "",  "");

	menu.addSubItem("eatingid", "Tea and Coffee places", "Tea and Coffee places",  "tandc.htm");
	menu.addSubItem("eatingid", "Restaurants", "Restaurants",  "eating.htm");
        menu.addSubItem("eatingid", "Eating out", "Eating out",  "eating.htm");
	menu.addSubItem("eatingid", "Fast Food places", "Fast Food places",  "fastfood.htm");
	menu.addSubItem("eatingid", "Clubs", "Clubs",  "clubs.htm");
	menu.addSubItem("eatingid", "Pubs", "Pubs",  "pubs.htm");
	menu.addSubItem("eatingid", "", "",  "");
      
	menu.addSubItem("othersid", "Alnmouth Boat Club", "Alnmouth Boat Club",  "Boatclub.htm");
	menu.addSubItem("othersid", "Golf Courses", "Golf Courses",  "golf.htm");
	menu.addSubItem("othersid", "Fishing", "Fishing",  "fish.htm");
	menu.addSubItem("othersid", "Pubs", "Pubs",  "pubs.htm");
	menu.addSubItem("othersid", "Clubs", "Clubs",  "clubs.htm");
	menu.addSubItem("othersid", "Outdoors", "Outdoors", "outdoors.htm");
	menu.addSubItem("othersid", "Places to Visit", "Places to Visit",  "outandabout.htm");
	menu.addSubItem("othersid", "Events", "Events",  "events.htm");
	menu.addSubItem("othersid", "", "",  "");

	menu.addSubItem("generalid", "Local services", "Local services",  "services.htm");
	menu.addSubItem("generalid", "Religion", "Religion",  "religion.htm");
	menu.addSubItem("generalid", "Alnwick Tourism Assoc", "Alnwick Tourism Assoc",  "http://www.accta.co.uk");
	menu.addSubItem("generalid", "Map Alnmouth to Howick", "Map Alnmouth to Howick",  "alnmouthn.htm");
	menu.addSubItem("generalid", "Contact Us", "Contact Us",  "contact.htm");
	menu.addSubItem("generalid", "Alnwick online", "Alnwick online",  "http://www.alnwick-online.co.uk");
	menu.addSubItem("generalid", "", "",  "");

	menu.showMenu();
}
