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

	menu = new Menu();
	menu.addItem("loginid", "Login - Play Game", "Log in to begin playing!",  "http://www.ageofpenguins.com/login.php", null);
	menu.addItem("membersid", "Membership", "Members Area",  null, null);
	menu.addItem("overviewid", "Game Overview", "Game help, details and documentation",  null, null);
	menu.addItem("tutorialid", "Tutorial", "Getting Started with Age of Penguins",  null, null);
	menu.addItem("scoresid", "Hall of Fame", "High Scores - the best AoP players!",  "http://www.ageofpenguins.com/highscores.php", null);
	menu.addItem("miscid", "About Us", "Contact us, help us, advertise with us!",  null, null);


	menu.addSubItem("membersid", "Register New User", "Sign up to play Age Of Penguins -- FREE!",  "http://www.ageofpenguins.com/newuser.php", "");	
	menu.addSubItem("membersid", "Log Out", "Log Out",  "http://www.ageofpenguins.com/logout.php", "");
	menu.addSubItem("membersid", "Lost Password?", "Have your password e-mailed to you",  "http://www.ageofpenguins.com/lostpassword.php", "");	



	menu.addSubItem("overviewid", "Requirements", "Game Requirements",  "http://www.ageofpenguins.com/requirements.php", "");
	menu.addSubItem("overviewid", "Game Features", "What makes Age of Penguins special",  "http://www.ageofpenguins.com/features.php", "");
	menu.addSubItem("overviewid", "Screenshots", "How does the game look?",  "http://www.ageofpenguins.com/screenies.php", "");
	menu.addSubItem("overviewid", "Free Downloads", "Age of Penguins-related Downloads",  "http://www.ageofpenguins.com/downloads.php", "");
	menu.addSubItem("overviewid", "FAQ", "Frequently Asked Questions",  "http://www.ageofpenguins.com/faq.php", "");


	menu.addSubItem("tutorialid", "In-Game Controls", "What keys do what -- play controls",  "http://www.ageofpenguins.com/controls.php", "");
	menu.addSubItem("tutorialid", "Characters", "Overview of different unit types in AoP",  "http://www.ageofpenguins.com/characters.php", "");
	menu.addSubItem("tutorialid", "Getting Started", "Playing AoP for the first time",  "http://www.ageofpenguins.com/walkthru.php", "");


	menu.addSubItem("miscid", "Advertise on AoP.com", "Low rates and high visibility for your business or website!", "http://www.ageofpenguins.com/advertise.php", "");
	menu.addSubItem("miscid", "Help Promote AoP", "Spread the word about the first web-based RTS game!",  "http://www.ageofpenguins.com/promote.php", "");
	menu.addSubItem("miscid", "Send Feedback", "Tell us what you think of AoP!",  "http://www.ageofpenguins.com/feedback.php", "");
	menu.addSubItem("miscid", "E-mail Webmaster", "Comments about our website?",  "mailto:matthew@ageofpenguins.com", "");
	menu.addSubItem("miscid", "E-mail Developers", "Send an e-mail to those who wrote AoP.",  "mailto:matthew@ageofpenguins.com", "");
	menu.addSubItem("miscid", "Make a Donation", "Support future development of AoP!",  "http://www.ageofpenguins.com/donate.php", "");


	menu.showMenu();
}