//Top Nav bar script v2- http://www.dynamicdrive.com/dynamicindex1/sm/index.htm

function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("homeid", "Home", "Back to Home Page",  "welcome.htm", null);
	menu.addItem("latestid", "Latest", "Latest Information",  null, null);
	menu.addItem("clubinfoid", "Club Info", "Club Info",  null, null);
	menu.addItem("photosid", "Photographs", "Photographs",  null, null);
	menu.addItem("archiveid", "Archive", "Archive Area",  null, null);

	menu.addSubItem("latestid", "Weekend", "News from the weekend",  "latest/weekend.htm");
	menu.addSubItem("latestid", "League Table", "League Table",  "latest/table.htm");
	menu.addSubItem("latestid", "Top Scorers", "Top Scorers",  "latest/scorers.htm");
	menu.addSubItem("latestid", "Season so far...", "Seasons results so far",  "latest/season.htm");
	menu.addSubItem("latestid", "Fixture List", "Fixture List",  "latest/fixtures.htm");

	menu.addSubItem("clubinfoid", "Sponsors", "Sponsor Information",  "clubinfo/sponsor.htm");
	menu.addSubItem("clubinfoid", "Club Shop", "For all your Club endorsed goods",  "clubinfo/clubshop.htm");
	menu.addSubItem("clubinfoid", "Location", "Cainscross RFC Location",  "clubinfo/location.htm");
	menu.addSubItem("clubinfoid", "Contacts", "Email players and friends",  "clubinfo/contacts.htm");
	menu.addSubItem("clubinfoid", "Officials", "Club Officials",  "clubinfo/officials.htm");
	menu.addSubItem("clubinfoid", "Links", "Rugby Links",  "clubinfo/links.htm");

	menu.addSubItem("photosid", "Teams", "Team Photos",  "photos/teams.htm");
	menu.addSubItem("photosid", "Dinner Dance", "Dinner/Dance Photos",  "photos/dinner.htm");
	menu.addSubItem("photosid", "Prague", "Prague Tour",  "photos/prague.htm");
	menu.addSubItem("photosid", "Aiya Napa", "Aiya Napa Tour",  "photos/cyprus.htm");

	menu.addSubItem("archiveid", "2003/2004", "2003/2004",  "archive/2003-2004.htm");
	menu.addSubItem("archiveid", "2002/2003", "2002/2003",  "archive/2002-2003.htm");
	menu.addSubItem("archiveid", "2001/2002", "2001/2002",  "archive/2001-2002.htm");
	menu.addSubItem("archiveid", "2000/2001", "2000/2001",  "archive/2000-2001.htm");
	menu.addSubItem("archiveid", "1999/2000", "1999/2000",  "archive/1999-2000.htm");


	menu.showMenu();
}
