//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", null, null, null);
	menu.addItem("about", "About NSBE", null, null, null);
	menu.addItem("memshp", "Membership", "",  null, null);
	menu.addItem("prog", "Programs and Events", "",  null, null);	
	menu.addItem("ldr", "Leadership", "", null, null);
	

	menu.addSubItem("home", "Index", "",  "index.htm", "");
	
	menu.addSubItem("about", "KSU Chapter History", "",  "history.htm", "");
	menu.addSubItem("about", "National Homepage", "",  "http://www.nsbe.org", "");
	menu.addSubItem("about", "Region 5 Homepage", "",  "http://www.nsbe.org/region5", "");
	
	menu.addSubItem("memshp", "Roster", "",  "roster.htm", "");
	menu.addSubItem("memshp", "Chapter Documents", "",  "doc.htm", "");
	menu.addSubItem("memshp", "Minutes", "",  "mins.htm", "");

	menu.addSubItem("prog", "Events", "",  "events.htm", "");
	menu.addSubItem("prog", "Photos", "",  "photos.htm", "");
	menu.addSubItem("prog", "Newsletter", "",  "newsletter.htm", "");
	
	menu.addSubItem("ldr", "Executive Board", "",  "eboard.htm", "");
	menu.addSubItem("ldr", "Chapter Advisor", "",  "advisor.htm", "");
	menu.addSubItem("ldr", "Chapter Dean", "",  "dean.htm", "");		

	
	menu.showMenu();
}

