function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("mainid", "Main", "Main",  null, null);
	menu.addItem("resourcesid", "Resources", "Resources",  null, null);
	menu.addItem("gameinfoid", "Game info", "Game info",  null, null);
	menu.addItem("shortstyleid", "Shortstyle", "Shortstyle",  null, null);
	menu.addItem("snowieid", "Snowie", "Snowie",  null, null);



	menu.addSubItem("mainid", "Home", "Home",  "http://gammoned.com/home.html");
	menu.addSubItem("mainid", "Contact Us", "Contact Us",  "http://gammoned.com/contact.html");
	menu.addSubItem("mainid", "About Us", "About Us",  "http://gammoned.com/about.html");
	menu.addSubItem("mainid", "SiteMap", "SiteMap",  "http://gammoned.com/sitemap.html");
	menu.addSubItem("mainid", "Sponsors", "Sponsors",  "http://gammoned.com/sponsors.html");
	menu.addSubItem("mainid", "Webmasters", "Webmasters",  "http://gammoned.com/webmasters.html");	
	menu.addSubItem("mainid", "Latest News", "Latest News",  "http://gammoned.com/whatsnew.html");

	menu.addSubItem("resourcesid", "e-zines", "e-zines",  "http://gammoned.com/ezine.html");
	menu.addSubItem("resourcesid", "Software", "Software",  "http://gammoned.com/software.html");
	menu.addSubItem("resourcesid", "Merchandise", "Merchandise",  "http://gammoned.com/merchandise.html");
	menu.addSubItem("resourcesid", "Books", "Books",  "http://gammoned.com/books/bookstore.html");
	menu.addSubItem("resourcesid", "Book Reviews", "Book Reviews",  "http://gammoned.com/bookreviews.html");
	menu.addSubItem("resourcesid", "Other sites", "Other sites",  "http://gammoned.com/othersites.html");
	menu.addSubItem("resourcesid", "Websites", "Websites",  "http://gammoned.com/websites.html");

	menu.addSubItem("gameinfoid", "History", "History",  "http://gammoned.com/history.html");
	menu.addSubItem("gameinfoid", "Rules", "Rules",  "http://gammoned.com/rules.html");
	menu.addSubItem("gameinfoid", "Dictionary", "Dictionary",  "http://gammoned.com/glossary.html");
	menu.addSubItem("gameinfoid", "Variants", "Variants",  "http://gammoned.com/variants.html");
	menu.addSubItem("gameinfoid", "Play online", "Play online",  "http://gammoned.com/playonline.html");
	menu.addSubItem("gameinfoid", "World club list", "World club list",  "http://gammoned.com/worldclubs.html");
	menu.addSubItem("gameinfoid", "Tournaments", "Tournaments",  "http://gammoned.com/tournaments.html");
	menu.addSubItem("gameinfoid", "Practice", "Practice",  "http://gammoned.com/practice.html");
	menu.addSubItem("gameinfoid", "WWWBackgammon", "WWWBackgammon",  "http://gammoned.com/wwwbackgammon.html");

	menu.addSubItem("shortstyleid", "Blunders", "Blunders", "http://gammoned.com/blunders.html");
	menu.addSubItem("shortstyleid", "Stories", "Stories",  "http://gammoned.com/stories.html");
	menu.addSubItem("shortstyleid", "Tourney Photos", "Tourney Photos", "http://gammoned.com/tourneyphotos.html");
	menu.addSubItem("shortstyleid", "Strategy", "Strategy",  "http://gammoned.com/strategy.html");
	menu.addSubItem("shortstyleid", "Lessons", "Lessons",  "http://gammoned.com/lessons.html");
	
	menu.addSubItem("snowieid", "The Software", "The Software",  "http://gammoned.com/snowie.html");
	menu.addSubItem("snowieid", "Expert Matches", "Expert Matches",  "http://gammoned.com/expertmatches.html");
	menu.addSubItem("snowieid", "POGL matches", "POGL matches",  "http://gammoned.com/pogl.html");
	menu.addSubItem("snowieid", "Other matches", "Other matches",  "http://gammoned.com/othermatches.html");
	menu.addSubItem("snowieid", "Hall of Shame", "Hall of Shame",  "http://gammoned.com/hallofshame.html");
	menu.addSubItem("snowieid", "Match Archive", "Match Archive",  "http://gammoned.com/archive.html");


	menu.showMenu();
}
