//Top Nav bar script v2- http://www.dynamicdrive.com/dynamicindex1/sm/index.htm

function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("home", "Home", "Home",  "index.html", null);
	menu.addItem("prices", "Prices", "Prices",  null, null);
	menu.addItem("dives", "Dive Selections", "Dive Selections",  null, null);
	menu.addItem("boat", "The Boat", "The Boat",  null, null);
	menu.addItem("links", "Links", "Links",  "links.html", null);


	menu.addSubItem("prices", "Charters", "Charters",  "prices.html#Charters");
	menu.addSubItem("prices", "Dives", "Dives", "prices.html#Dives");
	menu.addSubItem("prices", "Suggested Equipment", "Suggested Equipment", "prices.html#SuggEquip");


	menu.addSubItem("dives", "Sailing Out of Greenport", "Sailing Out of Greenport",  "diveselections.html#Greenport");
	menu.addSubItem("dives", "Sailing Out of Moriches", "Sailing Out of Moriches",  "diveselections.html#Moriches");
	menu.addSubItem("dives", "Sailing Out of Mount Sinai", "Sailing Out of Mount Sinai",  "diveselections.html#MountSinai");
	menu.addSubItem("dives", "Other Dive Sites", "Other Dive Sites",  "diveselections.html#Other");


	menu.addSubItem("boat", "Pictures", "Pictures",  "boat.html");
	menu.addSubItem("boat", "Boat Policy", "Boat Policy",  "boat.html#policy");
	menu.addSubItem("boat", "Services Included", "Services Included",  "boat.html#services");

	menu.showMenu();
}