//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("Photos", "Photos", "Uss Long Beach Photos",  null, null);
	menu.addItem("Memories", "Memories", "Memories",  null, null);
	menu.addItem("WebBoard", "Web Board", "Web Board",  null, null);
	menu.addItem("LostAndFound", "Lost And Found", "Lost And Found",  null, null);
	menu.addItem("Links", "Links", "Links",  null, null);
	menu.addItem("SiteMap", "Site Map", "Site Map",  null, null);

	menu.addSubItem("Photos", "Reunions", "Reunions",  "Reunions_main.html", "");
	menu.addSubItem("Photos", "Photos Of CGN-9", "Photos Of CGN-9",  "cgn9_pictures.html", "");
	menu.addSubItem("Photos", "Crew and Misc Photos", "Crew and Misc Photos",  "Misc_photos.html", "");
	menu.addSubItem("Photos", "Pictures Of Other Cruise Books", "Pictures Of Other Cruise Books",  "Pictures_Of_Other_Cruise_Books.html", "");
	
	menu.addSubItem("Memories", "Read or Send Memories", "Read or Send Memories",  "readorsend.html", "");
	
	menu.addSubItem("WebBoard", "Enter The Web Board", "Enter The Web Board",  "Webboard.html", "");
	
	menu.addSubItem("LostAndFound", "Lost And Found / Search Form", "Lost And Found / Search Form",  "landfmain.html", "");
		
	menu.addSubItem("Links", "Links", "Links",  "links.html", "");

	menu.addSubItem("SiteMap", "Site Map", "Site Map",  "sitemap.html", "");

	menu.showMenu();
}