//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("slus", "Starting Lineups", "Starting Lineups",  null, null);
	menu.addItem("graded", "Graded Cards", "Graded Cards",  null, null);
	menu.addItem("tradepages", "Trade Pages", "Trade Pages",  null, null);
	menu.addItem("miscid", "Miscellaneous", "Miscellaneous",  null, null);
	menu.addItem("searchengineid", "Search Engines", "Search Engines",  null, null);
	menu.addItem("home", "Home", "Home",  null, null);

	menu.addSubItem("slus", "Baseball", "Baseball",  "baseslu.html", "");
	menu.addSubItem("slus", "Basketball", "Basketball",  "baskslu.html", "");
	menu.addSubItem("slus", "Football", "Football",  "footslu.html", "");
	menu.addSubItem("slus", "Hockey", "Hockey",  "hockslu.html", "");


	menu.addSubItem("graded", "Baseball", "Baseball",  "basecards.html", "");
	menu.addSubItem("graded", "Basketball", "Basketball",  "baskcards.html", "");
	menu.addSubItem("graded", "Football", "Football",  "footcards.html", "");
	menu.addSubItem("graded", "Golf", "Golf",  "golf.html", "");

	menu.addSubItem("tradepages", "Football", "Football",  "football-trade.html", "");
	menu.addSubItem("tradepages", "Basketball", "Basketball",  "basketball-trade.html", "");
	menu.addSubItem("tradepages", "Baseball", "Baseball",  "baseball.html", "");
	menu.addSubItem("tradepages", "Personal", "Personal",  "pc.html", "");
	menu.addSubItem("tradepages", "Packers PC", "Packers PC",  "packerspc.html", "");


	menu.addSubItem("miscid", "Policies", "Policies",  "policies.html", "");
	menu.addSubItem("miscid", "Links", "Links",  "links.html", "");
	menu.addSubItem("miscid", "Contact Us", "Contact Us",  "contactus.html", "");


	menu.addSubItem("searchengineid", "Yahoo", "Yahoo",  "http://www.yahoo.com/", "");
	menu.addSubItem("searchengineid", "Google", "Google",  "http://www.google.com/", "");
	menu.addSubItem("searchengineid", "Excite", "Excite", "http://www.excite.com", "");
	menu.addSubItem("searchengineid", "HotBot", "HotBot",  "http://www.hotbot.com", "");

	menu.addSubItem("home", "Home", "Home",  "http://www.billssportscards.com/", "");

	menu.showMenu();
}