//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("boxscore", "Box Score", "Box Score",  null, null);
	menu.addItem("score", "Score Card", "Score Card",  null, null);
	menu.addItem("gamenotes", "Game Data", "Game Data",  null, null);
	menu.addItem("othergames", "Kerouac Memorial Games", "Kerouac Memorial Games",  null, null);
	menu.addItem("cbalinks", "CBA Links", "CBA Links",  null, null);

	menu.addSubItem("boxscore", "Box Score", "Box Score",  "#box", "");
	menu.addSubItem("boxscore", "Box Score Key", "Box Score Key",  "#key", "");

	
	menu.addSubItem("score", "Score Card", "Score Card",  "#scorecard", "");
	menu.addSubItem("score", "Score Card Key", "Score Card Key",  "#scorecardkey", "");



	menu.addSubItem("gamenotes", "Attendance", "Attendance",  "#attendance", "");
	menu.addSubItem("gamenotes", "Game Time", "Gametime",  "#gametime", "");
	menu.addSubItem("gamenotes", "Weather", "Weather", "#weather", "");
	menu.addSubItem("gamenotes", "Umpires", "Umpires", "#umpires", "");
	menu.addSubItem("gamenotes", "Official Scorer", "Official Scorer", "#scorer", "");
	menu.addSubItem("gamenotes", "MCP", "MCP", "#mcp", "");
	menu.addSubItem("gamenotes", "Game Notes", "Game Notes", "#othernotes", "");


	menu.addSubItem("othergames", "1997 Memorial", "1997 Memorial",  "http://www.cosmicbaseball.com/antibeat.html", "");
	menu.addSubItem("othergames", "2000 Memorial", "2000 Memorial",  "http://www.cosmicbaseball.com/jkgame0.html", "");
	menu.addSubItem("othergames", "2002 Memorial", "2002 Memorial",  "http://www.cosmicbaseball.com/02jkgame.html", "");
	menu.addSubItem("othergames", "2004 Memorial", "2004 Memorial",  "http://www.cosmicbaseball.com/04jkgame.html", "");
	menu.addSubItem("othergames", "Game Index", "Game Index",  "http://www.cosmicbaseball.com/games.html", "");



	menu.addSubItem("cbalinks", "CBA Home", "CBA Home",  "http://www.cosmicbaseball.com/cba1.html", "");
	menu.addSubItem("cbalinks", "CBA News", "CBA News",  "http://www.cosmicbaseball.com/cbanews.html", "");
	menu.addSubItem("cbalinks", "Season 2005", "Season 2005",  "http://www.cosmicbaseball.com/05season.html", "");
	menu.addSubItem("cbalinks", "Site Map", "Site Map",  "http://www.cosmicbaseball.com/cbasitemap.html", "");
	


	menu.showMenu();
}
