//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("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",  "../en/menu_en.html", "");
        menu.addSubItem("Home", "Français", "Français",  "../fr/menu_fr.html", "");

	menu.addSubItem("Photos", "Summer 2003", "Summer 2003",  "Summer 2003_fr.html", "");
	menu.addSubItem("Photos", "The Dig 2003", "The Dig 2003",  "THE DIG fr.html", "");
	menu.addSubItem("Photos", "The Train", "The Train",  "The Train fr.html", "");
	menu.addSubItem("Photos", "Items Donated", "Items Donated",  "Items donated fr.html", "");
	menu.addSubItem("Photos", "Buildings on the Move", "Buildings on the Move",  "Buildings on the move fr.html", "");
	

	menu.addSubItem("History", "The Farm", "The Farm",  "History of the Farm fr.html", "");
	menu.addSubItem("History", "The Project", "The Project",  "History of Project fr.html", "");
	menu.addSubItem("History", "The Brickyard", "The Brickyard",  "History of the Brickyard fr.html", "");
	
	
	menu.addSubItem("Maps", "Farm Site Map", "Farm Site Map",  "Farm site Map fr.html", "");
	menu.addSubItem("Maps", "How to find us", "How to find us",  "How to find us fr.html", "");
	

	menu.addSubItem("Events", "Antique Show", "Antique Show",  "Antique Show fr.html", "");
	menu.addSubItem("Events", "Fundraisers", "Fundraisers",  "Fundraising Events fr.html", "");
	
	
	menu.addSubItem("links", "Partners", "Partners",  "Partners fr.html", "");
	menu.addSubItem("links", "Resources", "Resources",  "Resources fr.html", "");
	menu.addSubItem("links", "Local Accomodations", "Local Accomodations",  "accomadations fr.html", "");

	
	menu.addSubItem("contacts", "For more information", "For more information",  "contactez-nous fr.html", "");
	menu.addSubItem("contacts", "Donations", "Donations",  "Donations fr.html", "");
	menu.addSubItem("contacts", "Memberships", "Memberships",  "Armstrong Heritage Farm - Membership Form.htm", "");
	menu.addSubItem("contacts", "Rates and Hours", "Rates and Hours",  "Rates and Hours fr.html", "");
	menu.showMenu();
}	