//Top Nav bar script v2.1- http://www.dynamicdrive.com/dynamicindex1/sm/index.htm

function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location, linktarget);

	menu = new Menu();
	menu.addItem("webmasterid", "Home", "Home",  null, null);
	menu.addItem("newsid", "Food Menu", "Food Menu",  null, null);
	menu.addItem("freedownloadid", "Beer & Wine", "Beer & Wine",  null, null);
	menu.addItem("searchengineid", "History & Apparel", "History & Apparel",  null, null);
	menu.addItem("miscid", "Miscellaneous", "Miscellaneous",  null, null);

	menu.addSubItem("webmasterid", "Home", "Home",  "http://www.tidestavern.com/index.html", "");

	menu.addSubItem("newsid", "Breakfast", "Breakfast",  "http://www.tidestavern.com/Breakfast.html", "");
menu.addSubItem("newsid", "Lunch & Dinner", "Lunch & Dinner",  "http://www.tidestavern.com/MenuTest.html", "");menu.addSubItem("newsid", "Beverages", "Beverages",  "http://www.tidestavern.com/MenuTest.html#BeverageTest", "");

	menu.addSubItem("freedownloadid", "Beer & Wine", "Beer & Wine",  "http://www.tidestavern.com/MenuTest.html#BeerAndWine", "");

	menu.addSubItem("searchengineid", "History", "History",  "http://www.tidestavern.com/HistoryTest.html", "");
	menu.addSubItem("searchengineid", "Tides Tavern Store", "Tides Tavern Store",  "http://www.tidestavern.com/TidesTavernStore.html", "");
	menu.addSubItem("miscid", "Entertainment", "Entertainment",  "http://www.tidestavern.com/EntertainmentTest.html", "");
	menu.addSubItem("miscid", "Events", "Events",  "http://www.tidestavern.com/EventsTest.html", "");
	menu.addSubItem("miscid", "Location", "Location",  "http://www.tidestavern.com/LocationTest.html", "");
	menu.addSubItem("miscid", "Contact Us", "Contact Us", "http://www.tidestavern.com/ContactTest.html", "");
	menu.addSubItem("miscid", "Links", "Links", "http://www.tidestavern.com/LinksTest.html", "");
	menu.addSubItem("miscid", "Tides Experience Video", "Tides Experience Video",  "http://www.tidestavern.com/FunVideo.html", "");
	menu.showMenu();
}
