//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("Homeid", "Home", "Return to Home Page",  null, null);
	menu.addItem("AboutUsid", "About Us", "About Leicester Celtic",  null, null);
	menu.addItem("ClubNewsid", "Club News", "Latest News and Archives",  null, null);
	menu.addItem("Academyid", "Academy", "Academy info",  null, null);
	menu.addItem("PhotoGalleriesid", "Photo Galleries", "View Photos from the Club",  null, null);

	menu.addSubItem("Homeid", "Return to Home Page", "Return to Home Page",  "home1.html", "");
        menu.addSubItem("Homeid", "Search", "Search Site or Web",  "http://www.leicesterceltic.ie/plugins/SiteSearches/search.php", "");
        menu.addSubItem("Homeid", "Links", "Links to related Sites",  "links.html", "");
        menu.addSubItem("Homeid", "League Tables", "View A2Z Soccer League Tables",  "http://www.a2zsoccer.com/index.cfm/loc/3.htm", "");

	menu.addSubItem("AboutUsid", "History", "History of Leicester Celtic",  "history.html", "");
	menu.addSubItem("AboutUsid", "Location", "Where we are",  "location.html", "");
	menu.addSubItem("AboutUsid", "Contacts", "View Club Contacts",  "contacts.html", "");
	menu.addSubItem("AboutUsid", "Ex-Players", "Profiles of Ex-Players",  "explayers.html", "");
	menu.addSubItem("AboutUsid", "All-Weather Facility", "All-Weather facility Info",  "astropitch.html", "");
	menu.addSubItem("AboutUsid", "Photo Gallery", "General Photo Collection",  "gengallery.html", "");
	menu.addSubItem("AboutUsid", "Feedback", "Send us your comments",  "feedback.html", "");

	menu.addSubItem("ClubNewsid", "Latest News", "Latest Club News",  "latestnews.html", "");
	menu.addSubItem("ClubNewsid", "Archives 2010", "Archives from 2010",  "archives2010.html", "");
	menu.addSubItem("ClubNewsid", "Summer Camp 2010", "Information on Leicester's Summer Camp 2010",  "summercamp2010.html", "");
	menu.addSubItem("ClubNewsid", "IBSA 2008 Championships", "Report and Photo",  "IBSA.html", "");
	menu.addSubItem("ClubNewsid", "Amsterdam Cup", "Match Report and Photo",  "amsterdamcup07.html", "");
	menu.addSubItem("ClubNewsid", "Christopher Cup", "Match Report and Photo",  "christophercup05.html", "");
	menu.addSubItem("ClubNewsid", "Willie Kissane Tournament", "Report and Results",  "kissanetournament05.html", "");

	menu.addSubItem("Academyid", "Fixtures", "Fixtures this week",  "sixaside.html", "");
	menu.addSubItem("Academyid", "Academy Application Forms", "Soccer Academy Application Forms for Next Season",  "appform.html", "");
	menu.addSubItem("Academyid", "Latest News", "Academy News",  "sixnews.html", "");
	menu.addSubItem("Academyid", "Finals Day Photos", "Photos from the Finals Day, 2010",  "acadfinals2010.html", "");
	menu.addSubItem("Academyid", "Gallery", "Photo Gallery",  "photogallery6aside.html", "");

	menu.addSubItem("PhotoGalleriesid", "General Gallery", "General Club Photos",  "gengallery.html", "");
	menu.addSubItem("PhotoGalleriesid", "7/9 & 11-a-Side", "Team Photos",  "teamphotos.html", "");
	menu.addSubItem("PhotoGalleriesid", "Soccer Academy", "Team Photos",  "photogallery6aside.html", "");
	menu.addSubItem("PhotoGalleriesid", "Academy Finals Day 2010", "Photos from the day",  "acadfinals2010.html", "");
	menu.addSubItem("PhotoGalleriesid", "Academy Finals Day 2009", "Photos from the day",  "finalsday09.html", "");
	menu.addSubItem("PhotoGalleriesid", "DDSL Presentation", "Photos from the day",  "ddslpres04.html", "");
	menu.addSubItem("PhotoGalleriesid", "Celtic Trip 2009", "Photos from the trip",  "celtictrip09.html", "");
	menu.addSubItem("PhotoGalleriesid", "Mini World Cup 2009", "Finals Day Photos",  "miniwc09.html", "");
	menu.addSubItem("PhotoGalleriesid", "U9s Match Photos", "Match Photos February 2009",  "Feb09.html", "");
	menu.addSubItem("PhotoGalleriesid", "U7s Match Photos", "Match Photos 2010",  "u7a1_2010.html", "");



	menu.showMenu();
}