//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("webmasterid", "Home", "Home",  null, null);
	menu.addItem("newsid", "1st Team", "1st Team",  null, null);
	menu.addItem("freedownloadid", "Media", "Media",  null, null);
	menu.addItem("searchengineid", "Club Info & Contacts", "Club Info & Contacts",  null, null);
	menu.addItem("miscid", "Miscellaneous", "Miscellaneous",  null, null);

	menu.addSubItem("webmasterid", "Frontpage", "Frontpage",  "http://www.btinternet.com/~croydonathleticfc/", "");
	menu.addSubItem("webmasterid", "Latest News", "Frontpage",  "http://www.btinternet.com/~croydonathleticfc/news200607.htm", "");	
        
	
	menu.addSubItem("newsid", "Fixtures & Results", "Fixtures & Results",  "http://www.btinternet.com/~croydonathleticfc/fixtures200607.htm", "");
	menu.addSubItem("newsid", "Reports", "Reports",  "http://www.btinternet.com/~croydonathleticfc/reports200506.htm", "");
	menu.addSubItem("newsid", "Goals & Appearances", "Goals & Appearances",  "http://www.btinternet.com/~croydonathleticfc/stats200607.htm", "");
	menu.addSubItem("newsid", "Tables", "Tables",  "http://www.footballwebpages.co.uk/league.jsp?comp=13", "");
	menu.addSubItem("newsid", "Attendances", "Attendances",  "http://www.footballwebpages.co.uk/attendances.jsp?comp=13", "");
        menu.addSubItem("newsid", "Recent Form", "Recent Form",  "http://www.footballwebpages.co.uk/formGuide.jsp?comp=13", "");
	menu.addSubItem("newsid", "Profiles", "Profiles",  "http://www.btinternet.com/~croydonathleticfc/profiles200506.htm", "");
	
	menu.addSubItem("freedownloadid", "Man of the Match", "Man of the Match",  "http://www.manofthematch.com/vote.php?accname=croydon", "");
	menu.addSubItem("freedownloadid", "Picture Gallery", "Picture Gallery",  "http://www.btinternet.com/~croydonathleticfc/picturegallery.htm", "");
        menu.addSubItem("freedownloadid", "Message Board", "Message Board",  "http://croydonathletic.proboards53.com ", "");
  
	menu.addSubItem("searchengineid", "History", "History",  "http://www.btinternet.com/~croydonathleticfc/history.htm", "");
	menu.addSubItem("searchengineid", "Directions", "Directions",  "http://www.btinternet.com/~croydonathleticfc/map.htm", "");
	menu.addSubItem("searchengineid", "Officials", "Officials", "http://www.btinternet.com/~croydonathleticfc/club.htm", "");
	menu.addSubItem("searchengineid", "Contact Us", "Contact Us",  "http://www.btinternet.com/~croydonathleticfc/contacts.htm", "");

	
	menu.addSubItem("miscid", "Youth Team", "Youth Team",  "http://www.syl.org.uk/", "");
	menu.addSubItem("miscid", "Junior Rams", "Junior Rams",  "http://www.ramjuniors.vze.com", "");
        menu.addSubItem("miscid", "Ladies Team", "Ladies Team",  "http://www.croydonathleticladies.co.uk", "");
         menu.addSubItem("miscid", "Linkspage", "Linkspage",  "http://www.btinternet.com/~croydonathleticfc/linkspage.htm", "");
        menu.addSubItem("miscid", "Cup Records", "Cup Records",  "http://www.btinternet.com/~croydonathleticfc/cuprecords.htm", "");

	menu.showMenu();
}