function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("vellsid","Home", "Home", null,null);
	menu.addItem("vellscuisineid", "Vell's Cuisine", "Vell's Cuisine", null,null);
	menu.addItem("weddingsid", "Wedding Receptions and Ceremonies", "Wedding Receptions and Ceremonies", null,null);
	menu.addItem("facilityinformationid", "Facility Information", "Facility Information",  null,null);
	menu.addItem("contactusid", "Contact Us", "Contact Us",  null,null);
	
	menu.addSubItem("vellsid","Home", "Home", "vells.html");
	
	menu.addSubItem("vellscuisineid", "Hors D'oeuvres", "Hors D'oeuvres",  "HorsDoeuvres.htm");
	menu.addSubItem("vellscuisineid", "Vell's Main Course Cuisine", "Vell's Main Course Cuisine",  "MainCourse.htm");
	menu.addSubItem("vellscuisineid", "Vell's Desserts", "Vell's Desserts",  "TestDessert.htm");
	menu.addSubItem("vellscuisineid", "Wedding Cakes", "Wedding Cakes",  "WeddingCakes.htm");
	
	menu.addSubItem("weddingsid", "Wedding Receptions at Vell's", "Wedding Receptions at Vell's", "WeddingReceptions.htm");
	menu.addSubItem("weddingsid", "Wedding Ceremonies at Vell's", "Wedding Ceremonies at Vell's", "WeddingCeremonies.htm");

	menu.addSubItem("facilityinformationid", "Reception Halls", "Reception Halls",  "ReceptionHalls.htm");
	menu.addSubItem("facilityinformationid", "Places for Overnight Accommodations ", "Places for Overnight Accommodations", "Motels.htm");
	menu.addSubItem("facilityinformationid", "Directions to Vell's", "Directions to Vell's","DirectionstoVells.htm");
	
	menu.addSubItem("contactusid", "Contact Vell's","Contact Vell's", "ContactVells.htm");

	menu.showMenu();
}