//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("Branches", "Branches", "Branches",  null, null);
	menu.addItem("Documents", "Documents", "Documents",  null, null);
	menu.addItem("Information", "Information", "Information",  null, null);
	menu.addItem("Activities", "Activities", "Activities",  null, null);
	menu.addItem("Schedules", "Schedules", "Schedules",  null, null);
	menu.addItem("Contact", "Contact", "Contact",  null, null);
	menu.addItem("Home", "Home", "Home", null, null);
	
	menu.addSubItem("Branches", "Purks", "Purks",  "html/purks.htm", "_parent");
	menu.addSubItem("Branches", "VerBeck", "VerBeck",  "html/verbeck.htm", "_parent");
	menu.addSubItem("Branches", "Warner Tully", "Warner Tully",  "html/2007WARNERTULLYYMCA.html", "_parent");
	
	menu.addSubItem("Documents", "Employment Application", "Employment Application",  "pdf/employment.pdf", "_parent");
	menu.addSubItem("Documents", "Lifeguard Application", "Lifeguard Application",  "pdf/lifeguard.pdf", "_parent");
	menu.addSubItem("Documents", "Fitness Guidelines", "Fitness Guidelines",  "pdf/glin.pdf", "_parent");
			
	menu.addSubItem("Information", "Membership", "Membership",  "html/membership.htm", "bottomFrame");
	menu.addSubItem("Information", "Pool Parties", "Pool Parties",  "html/poolparties.htm", "bottomFrame");
	menu.addSubItem("Information", "Primetime", "Primetime",  "pdf/aschcar.pdf", "_parent");
	menu.addSubItem("Information", "Workout Policy", "Workout Policy",  "pdf/poli.pdf", "_parent");
	
	menu.addSubItem("Activities", "Summary", "Summary",  "pdf/activities.pdf", "_parent");
	menu.addSubItem("Activities", "Lunch B-Ball", "Lunch B-Ball",  "html/lunchbunchbasketball.htm", "bottomFrame");
	menu.addSubItem("Activities", "Mon Wed B-Ball", "Mon Wed B-Ball",  "pdf/mwbball.pdf", "_parent");
	menu.addSubItem("Activities", "Indoor Cycling", "Indoor Cycling",  "pdf/cycl.pdf", "_parent");
		
	menu.addSubItem("Schedules", "Fitness", "Fitness",  "html/purkaerobics.htm", "_parent");
	menu.addSubItem("Schedules", "PoolSchedule", "PoolSchedule",  "pdf/pools.pdf", "_parent");
	menu.addSubItem("Schedules", "Child Care", "Child Care",  "html/nursery.htm", "_parent");
	
	menu.addSubItem("Contact", "Staff", "Staff",  "html/purkstaff1.htm", "bottomFrame");
	menu.addSubItem("Contact", "Offices", "Offices",  "html/offices1.htm", "bottomFrame");
	
		
	menu.addSubItem("Home", "Home", "Home",  "index.htm", "_parent");
	
		
	menu.showMenu();
}

