//Top Nav bar script v2.1- http://www.dynamicdrive.com/dynamicindex1/sm/index.htm
// This really is the navigation bar for the newest version of the GAF Website HOMEPAGE in June 2009, as updated by Colleen Kelly

function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location, linktarget);

	menu = new Menu();
	menu.addItem("gaf", "G.A.F. Society", "German-American Festival Society",  null, null);
	menu.addItem("people", "People", "Volunteers",  null, null);
	menu.addItem("information", "Flyers & Links", "General Information",  null, null);
	menu.addItem("fest", "Festival", "GAF Annual Festival",  null, null);
	menu.addItem("oak", "Rental Information & Facilities", "Rent Oak Shade Grove",  null, null);
	menu.addItem("contact", "Contact", "Contact",  null, null);

	menu.addSubItem("gaf", "Club House", "Club House","http://www.gafsociety.org/clubhouse.htm", "");
	menu.addSubItem("gaf", "Seven Societies", "Seven Societies","http://www.gafsociety.org/7society.htm", "");
	menu.addSubItem("gaf", "Calendar", "GAF Calendar","http://www.gafsociety.org/200X_calendar.htm", "");
	menu.addSubItem("gaf", "Steinstossen", "Steinstossen","http://www.gafsociety.org/steinstossen.htm", "");
    menu.addSubItem("gaf", "Scholarship Awards", "GAF Scholarship Awards","http://www.gafsociety.org/GAF Scholarship Awards.htm", "");
	menu.addSubItem("gaf", "Our History", "Our History","http://www.gafsociety.org/history.htm", "");
	menu.addSubItem("gaf", "Fussball", "Fussball","http://www.gafsociety.org/fussball.htm", "");
    // menu.addSubItem("gaf", "Mission Statement", "Our Mission Statement",  "http://www.gafsociety.org/mission.htm", "");

	menu.addSubItem("people", "Officers", "Officers",  "http://www.gafsociety.org/officers.htm", "");
	menu.addSubItem("people", "Retirees", "Retirees",  "http://www.gafsociety.org/retiree.htm", "");
    menu.addSubItem("people", "Members & Guests", "Some Members & Guests",  "http://www.gafsociety.org/mem_guests.htm", "");
			
	menu.addSubItem("information", "Flyers/Current Events", "Flyers/Current Events", "http://www.gafsociety.org/flyers.htm", "");
	// menu.addSubItem("information", "Newsletters", "Newsletters",  "http://www.gafsociety.org/newsletter.htm", "");
    // menu.addSubItem("information", "Calendar", "Calendar of Events",  "http://www.gafsociety.org/calendar.htm", "");
    // Note Current Events and Flyers are the same page as the Festival Chair wanted a Current Events Page and the President wanted the Flyers Page
	// menu.addSubItem("information", "Flyers", "Flyers",  "http://www.gafsociety.org/flyers.htm", "");
	menu.addSubItem("information", "Links", "Links",  "http://www.gafsociety.org/links.htm", "");

    menu.addSubItem("fest", "Festival Home", "Get All the Info Here!",  "http://www.gafsociety.org/fest.htm", "");
	menu.addSubItem("fest", "Raffle", "Festival Raffle",  "http://www.gafsociety.org/Festival_Raffle.htm", "");
	// menu.addSubItem("fest", "Festival Volunteer App", "On-line Festival Volunteer Application",  "http://www.gafsociety.org/Volunteer Form.htm", "");
	menu.addSubItem("fest", "Hummel Contest", "Hummels",  "http://www.gafsociety.org/hummel_contest.htm", "");
	menu.addSubItem("fest", "Entertainment", "Festival Entertainment",  "http://www.gafsociety.org/Festival_Entertainment.htm", "")
    menu.addSubItem("fest", "Activities", "Activities",  "http://www.gafsociety.org/activities.htm", "");
	// menu.addSubItem("fest", "2004 Photos", "2004 Photos", "http://www.gafsociety.org/2004photo.htm", "");
	//menu.addSubItem("fest", "Oak Shade Grove", "Oak Shade Grove",  "http://www.gafsociety.org/oak.htm", "");
	menu.addSubItem("fest", "Map to Festival", "How to Get Here",  "http://www.gafsociety.org/map.htm", "");
	//menu.addSubItem("fest", "2006 Hummel Contest", "Download the Entry Form   ~Adobe Acrobat Required~",  "http://www.gafsociety.org/2006/Flyers/HummelContest.pdf", "");
	// menu.addSubItem("fest", "2007 Band Schedule", "Band Schedule",  "http://www.gafsociety.org/200X_band_schedule.htm", "");	
	menu.addSubItem("fest", "Festival Links", "Festival Links",  "http://www.gafsociety.org/Festival Links.htm", "");
	menu.addSubItem("fest", "Festival Survey", "Festival Survey",  "http://www.gafsociety.org/Festival_Survey.htm", "");
	// menu.addSubItem("fest", "2006 Wood Carvers", "Wood Carver",  "http://www.gafsociety.org/carver.htm", "");
	// menu.addSubItem("fest", "2006 Budweiser Clydesdales", "The Clydedales are coming!",  "http://www.gafsociety.org/clydesdale.htm", "");
               
    menu.addSubItem("oak", "General Rental Information", "General Rental Info Here!",  "http://www.gafsociety.org/oak.htm", "");
    menu.addSubItem("oak", "Oak Shade Grove Hall Rental", "Hall Rental Info",  "http://www.gafsociety.org/Oak Shade Hall Rental.htm", "");
    menu.addSubItem("oak", "Oak Shade Picnic Grove Rental", "Picnic Grove Rental Info",  "http://www.gafsociety.org/Oak Shade Picnic Grove Rental.htm", "");
    menu.addSubItem("oak", "Oak Shade Grove Schwabenhalle Rental", "Schwabenhalle Rental Info",  "http://www.gafsociety.org/Schwabenhalle_Rental.htm", "");
        
	menu.addSubItem("contact", "Home", "Home",  "http://www.gafsociety.org/", "");
	menu.addSubItem("contact", "WebAdmin", "WebAdmin",  "mailto:webadmin@gafsociety.org", "");
	menu.addSubItem("contact", "Site Map", "Site Map",  "http://www.gafsociety.org/site_map.htm", "");

	menu.showMenu();
}