//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",  null, null);
	menu.addItem("Meetings", "Meetings", "Meetings",  null, null);
	menu.addItem("Photos", "Photos", "Photos",  null, null);
	menu.addItem("History", "History", "History",  null, null);
	menu.addItem("Maps", "Maps", "Maps",  null, null);
	menu.addItem("Events", "Events", "Events",  null, null);
	menu.addItem("links", "Links", "Links",  null, null);
	menu.addItem("contacts", "Contact Us", "Contact Us",  null, null);

	menu.addSubItem("Home", "English", "English",  "menu_en.html", "");
      menu.addSubItem("Home", "Français", "Français",  "../fr/menu_fr.html", "");

	menu.addSubItem("Meetings", "Meeting Dates", "Meeting Dates",  "Meeting_dates_en.html", "");
      menu.addSubItem("Meetings", "Minutes", "Minutes",  "Minutes_en.html", "");
	
	menu.addSubItem("Photos", "Summer 2003", "Summer 2003",  "Summer_2003_en.html", "");
	menu.addSubItem("Photos", "The Dig 2003", "The Dig 2003",  "THE_DIG_en.html", "");
	menu.addSubItem("Photos", "The Train", "The Train",  "The_Train_en.html", "");
	menu.addSubItem("Photos", "Items Donated", "Items Donated",  "Items_donated_en.html", "");
	menu.addSubItem("Photos", "Buildings on the Move", "Buildings on the Move",  "Buildings_on_the_move_en.html", "");
	menu.addSubItem("Photos", "For Nature Lovers", "For Nature Lovers",  "For_Nature_Lovers_en.html", "");
	menu.addSubItem("Photos", "Events Photos", "Events Photos",  "Events_Photos_en.html", "");
	menu.addSubItem("Photos", "Work under way ", "Work under way ",  "Work_under_way_en.html", "");

	menu.addSubItem("History", "The Farm", "The Farm",  "History_of_the_Farm_en.html", "");
	menu.addSubItem("History", "The Project", "The Project",  "History_of_Project_en.html", "");
	menu.addSubItem("History", "The Brickyard", "The Brickyard",  "History_of_the_Brickyard_en.html", "");
	
	
	menu.addSubItem("Maps", "Farm Site Map", "Farm Site Map",  "Farm_site_Map_en.html", "");
	menu.addSubItem("Maps", "How to find us", "How to find us",  "How_to_find_us_en.html", "");
	

	menu.addSubItem("Events", "Shawville Jamboree", "Shawville Jamboree",  "Jamboree_en.html", "");
	menu.addSubItem("Events", "Fundraisers", "Fundraisers",  "Fundraising_Events_en.html", "");
	menu.addSubItem("Events", "Antique Show", "Antique Show",  "Antique_Show_en.html", "");
	menu.addSubItem("Events", "In the Press", "In the Press",  "In_the_Press_en.html", "");
    

	menu.addSubItem("links", "Partners", "Partners",  "Partners_en.html", "");
	menu.addSubItem("links", "Resources", "Resources",  "Resources_en.html", "");
	menu.addSubItem("links", "Local Accomodations", "Local Accomodations",  "accomadations_en.html", "");

	
	menu.addSubItem("contacts", "For more information", "For more information",  "contact_us_en.html", "");
	menu.addSubItem("contacts", "Donations", "Donations",  "Donations_en.html", "");
	menu.addSubItem("contacts", "Memberships", "Memberships",  "Armstrong Heritage Farm - Membership_Form.htm", "");
	menu.addSubItem("contacts", "Rates and Hours", "Rates and Hours",  "Rates_and_Hours_en.html", "");
	menu.showMenu();
}	
