function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("webmasterid", "Science web pages",  null, null);
	menu.addItem("anime", "Anime web pages",  null, null);
	menu.addItem("games", "My games page",  null, null);
	menu.addItem("star", "The Star Wars Game",  null, null);
	menu.addItem("awards", "Awards",  null, null);
	
	menu.addSubItem("webmasterid", "My Atom web page", "My Atom web page", "http://users.zoominternet.net/~even/science.html");
	menu.addSubItem("webmasterid", "My Mineral web page", "My Mineral web page", "http://users.zoominternet.net/~even/minerals.html");
	menu.addSubItem("webmasterid", "My French Creek Project", "My French Creek Project", "http://www.angelfire.com/anime4/frenchcreek/index.html");

	menu.addSubItem("anime", "My Cowboy Bebop web page", "My Cowboy Bebop web page", "http://users.zoominternet.net/~even/cowboybebop.html");
	menu.addSubItem("anime", "My Tenchi Muyo web page", "My Tenchi Muyo web page", "http://users.zoominternet.net/~even/tenchimain.html");

	menu.addSubItem("games", "Games", "Games", "http://freewebz.com/even22/index.html");

	menu.addSubItem("star", "Star Wars Game", "Star Wars Game", "http://users.zoominternet.net/~even/starwarsmain.html");

	menu.addSubItem("awards", "My Awards", "My Awards", "http://users.zoominternet.net/~even/showcase.html");
	
	menu.showMenu();
}