//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 Notes", "Game Notes",  null, null);
	menu.addItem("othergames", "Other Games", "Other 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", "Other Notes", "Other Notes", "#othernotes", "");


	menu.addSubItem("othergames", "Game Index", "Game Index",  "http://www.cosmicbaseball.com/games.html", "");
	menu.addSubItem("othergames", "Money @ Emotion", "Money @ Emotion",  "http://www.cosmicbaseball.com/money.html", "");
	menu.addSubItem("othergames", "Muses @ Planets", "Muses @ Planets",  "http://www.cosmicbaseball.com/muspla.html", "");
	menu.addSubItem("othergames", "DC @ MLB", "DC @ MLB",  "http://www.cosmicbaseball.com/dcmlbgame.html", "");
	menu.addSubItem("othergames", "2004 CUS", "2004 CUS",  "http://www.cosmicbaseball.com/04cus.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();
}
