function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("Home", "Home", "Home",  null, null);
	menu.addItem("matchesandnews", "Match Info and News", "Matches And News",  null, null);
	menu.addItem("picsandinfo", "Pics and Info", "Pics and Info",  null, null);
	menu.addItem("aboutthesquad", "About The Squad", "About The Squad",  null, null);
	menu.addItem("FunStuff", "Fun Stuff", "Fun Stuff",  null, null);	
	menu.addItem("contactinfo", "Contact Info", "Contact Info", null, null);	
	
	menu.addSubItem("Home", "Home", "Home",  "../index.htm");
	
	menu.addSubItem("matchesandnews", "Watch Live Games", "Watch Live Games",  "../Live.htm");
	menu.addSubItem("matchesandnews", "Standings", "Standings",  "../Standings.htm");
	menu.addSubItem("matchesandnews", "Fixtures", "Fixtures",  "../Fixtures.htm");
	menu.addSubItem("matchesandnews", "Results", "Results",  "../Results.htm");
	menu.addSubItem("matchesandnews", "News", "News",  "../News.htm");
	menu.addSubItem("matchesandnews", "Top Scorers", "Top Scorers",  "../Top.htm");
	menu.addSubItem("matchesandnews", "Champions League", "Champions league",  "../Champions.htm");

	menu.addSubItem("picsandinfo", "Records", "Records",  "../Records.htm");
	menu.addSubItem("picsandinfo", "Stadium", "Stadium",  "../Stadium.htm");
	menu.addSubItem("picsandinfo", "History", "History",  "../History.htm");
	menu.addSubItem("picsandinfo", "Trophies", "Trophies",  "../Trophies.htm");
	menu.addSubItem("picsandinfo", "Picture Gallery", "Picture Gallery",  "../Gallery.htm");


	menu.addSubItem("aboutthesquad", "Squad Info", "Squad Info",  "../Squad.htm");
	menu.addSubItem("aboutthesquad", "Foreigners", "Foreigners",  "../Foreigners.htm");
	menu.addSubItem("aboutthesquad", "Roster", "Roster",  "../Profiles.htm");
	menu.addSubItem("aboutthesquad", "Club Info", "Club Info",  "../Club.htm");
	menu.addSubItem("aboutthesquad", "Transfers", "Transfers",  "../Transfers.htm");
	menu.addSubItem("aboutthesquad", "Trainers", "Trainers",  "../Trainers.htm");
	menu.addSubItem("aboutthesquad", "Tifosi", "Tifosi",  "../Tifosi.htm");

	menu.addSubItem("FunStuff", "Songs", "Songs",  "Songs.htm");
	menu.addSubItem("FunStuff", "Wallpaper", "Wallpaper",  "../Wallpaper.htm");
	menu.addSubItem("FunStuff", "Forum", "Forum",  "http://pub31.bravenet.com/forum/show.php?usernum=2587212438");
	menu.addSubItem("FunStuff", "Greeting Cards", "Greeting Cards",  "http://pub31.bravenet.com/postcard/post.php?usernum=2587212438");


	menu.addSubItem("contactinfo", "Email Me", "Email Me",  "../Messenger.htm");
	menu.addSubItem("contactinfo", "Link To Me", "Link To Me",  "../Link_To_Me.htm");	
	menu.addSubItem("contactinfo", "Links", "Links",  "../Links.htm");
	
	menu.showMenu();
}
