//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("home", "Home", "Home",  "/index.htm", null);
	menu.addItem("info", "General", "DSA Info.",  null, null);
	menu.addItem("regatta", "Regattas", "Regatta Schedule",  null, null);
	menu.addItem("results", "Results", "Regatta Results",  null, null);
	menu.addItem("cruising", "Cruising", "DSA Crusing",  null, null);
	menu.addItem("photos", "Photos", "Photos",  null, null);
	menu.addItem("misc", "Misc.", "Misc.",  null, null);

	menu.addSubItem("info", "Event Calendar", "Events and Meetings",  "/meeting.htm", "");
	menu.addSubItem("info", "About the DSA", "General DSA Info.",  "/general.htm", "");
	menu.addSubItem("info", "DSA Quiz", "Take the DSA Quiz",  "/quiz_2.htm", "");
	menu.addSubItem("info", "Club Officers", "Who be Who in the DSA",  "/officers.htm", "");

	menu.addSubItem("regatta", "Spring Regatta", "Spring Regatta",  "/meeting.htm", "");
	menu.addSubItem("regatta", "DBL Series at CSYC ", "Rick Johnson Series",  "/meeting.htm", "");
	menu.addSubItem("regatta", "Huron Challenge", "Huron Challenge",  "/meeting.htm", "");
	menu.addSubItem("regatta", "Fall Championship", "Fall Championship",  "/meeting.htm", "");

	menu.addSubItem("results", "Spring Regatta", "Spring Regatta",  "/index_archives.htm", "");
	menu.addSubItem("results", "Huron Challenge", "Huron Challenge",  "/index_archives.htm", "");
	menu.addSubItem("results", "Round Huron", "Round Huron",  "/index_archives.htm", "");
	menu.addSubItem("results", "Fall Championship", "Fall Championship",  "/index_archives.htm", "");
	
menu.addSubItem("cruising", "DSA Crusing Update", "DSA Crusing Update",  "/crusingNews.htm", "");
menu.addSubItem("cruising", "DSA Crusing Award", "DSA Crusing Awards",  "/crusingAwards.htm", "");

menu.addSubItem("photos", "Huron Challege 2003", "Huron Challenge 2003","/challenge2003pixs/index.html", "");
menu.addSubItem("photos", "Fall Championship 2004", "Fall Championship 2004","/fall2004pics/index.html", "");
menu.addSubItem("photos", "Commodores Bash 2004", "Commodores Bash 2004","/CommodoreBash2004Pics/index.html", "");
menu.addSubItem("photos", "Fall Championship 2005", "Fall Championship 2005","/fall2005pics/index.html", "");
menu.addSubItem("photos", "Spring Regatta 2005", "Spring Regatta 2005","/SpringRegattaPics2005/index.html", "");
	menu.addSubItem("photos", "CSYC Mon & Thurs 2005", "CSYC Mon & Thurs 2005","/CSYC", "");
	menu.addSubItem("photos", "Huron Challege 2008", "Huron Challenge 2008","/challenge2008pics/index.html", "");

	menu.addSubItem("misc", "DSA Archives", "DSA Archives",  "/index_archives.htm", "");

	menu.addSubItem("misc", "Sail Fast Tips", "Tips from Sailing World",  "/sailing_tips.htm", "");
	menu.addSubItem("misc", "Weather", "Weather",  "http://www.great-lakes.net/conditions/stclair.html", "");
	menu.addSubItem("misc", "Webmaster Favorite Links", "WebMasters Favorites",  "/WebMasters_Picks.htm", "");

	menu.showMenu();
}