//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",  "index.htm", null);
	menu.addItem("calendarid", "Calendar", "Calendar",  null, null);
	menu.addItem("miscid", "Galleries", "Galleries",  null, null);
	menu.addItem("newsid", "Links", "Links",  null, null);
	menu.addItem("freedownloadid", "Members", "Members",  null, null);
	menu.addItem("servicesid", "Services", "Services",  null, null);
	menu.addItem("contactid", "Contact", "Contact",  "contact.htm", null);
	menu.addItem("blankid", "", "",  "#", null);
	
	menu.addSubItem("webmasterid", "Home", "Home Page",  "index.htm", "");
	
	menu.addSubItem("calendarid", "Calendar", "Calendar",  "calendar.htm", "");
	menu.addSubItem("calendarid", "Fish Calendar", "Fish Calendar",  "cbcalendar.htm", "");
	
	menu.addSubItem("miscid", "Gallery", "Gallery",  "gallery.htm", "");
	menu.addSubItem("miscid", "Events", "Events",  "galleries/events/index.htm", "_blank");
	menu.addSubItem("miscid", "Inshore", "Inshore",  "galleries/inshore/index.htm", "_blank");
	menu.addSubItem("miscid", "Offshore", "Offshore",  "galleries/offshore/index.htm", "_blank");
	menu.addSubItem("miscid", "Freshwater", "Freshwater",  "galleries/fresh/index.htm", "_blank");
	menu.addSubItem("miscid", "Youth", "Youth",  "galleries/youth/index.htm", "_blank");
	menu.addSubItem("miscid", "Video", "Video",  "video.htm", "");
	
	menu.addSubItem("newsid", "Weather", "Weather",  "weather.htm", "");
	menu.addSubItem("newsid", "Safety", "Safety",  "safety.htm", "");
	menu.addSubItem("newsid", "Bay Resources", "Ches.Bay",  "bay.htm", "");
	menu.addSubItem("newsid", "Marinas", "Marinas",  "marina.htm", "");
	menu.addSubItem("newsid", "Useful Links", "Links",  "links.htm", "");
	
	menu.addSubItem("freedownloadid", "Events", "Events",  "events.htm", "");
	menu.addSubItem("freedownloadid", "Leadership", "Leadership",  "leadership.htm", "");	
	menu.addSubItem("freedownloadid", "Membership", "Membership",  "member.htm", "");
	menu.addSubItem("freedownloadid", "Minutes", "Minutes",  "minutes.html", "");
	menu.addSubItem("freedownloadid", "Newsletter", "Newsletter",  "newsletters.html", "");
	
	menu.addSubItem("servicesid", "Charters", "Charters",  "charters.htm", "");
	menu.addSubItem("servicesid", "Guides", "Guides",  "guides.htm", "");
	menu.addSubItem("servicesid", "Tackle", "Tackle",  "tackle.htm", "");
	menu.addSubItem("servicesid", "Services", "Servces",  "services.htm", "");
	
	menu.addSubItem("contactid", "Contact", "Contact",  "contact.htm", "");
	
		
	menu.showMenu();
}