function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("whatsnewid", "What's New", "What's New",  null, null);
	menu.addItem("photoalbumid", "Photo Album", "Photo Album",  null, null);
	menu.addItem("articlesid", "Articles", "Articles",  null, null);
	menu.addItem("linksid", "Links", "Links",  null, null);
	menu.addItem("importantstuffid", "Important Stuff", "Miscellaneous",  null, null);
	

	menu.addSubItem("whatsnewid", "Club News", "Club News",  "club_news.htm");
	menu.addSubItem("whatsnewid", "Model News", "Model News",  "model_news.htm");
	menu.addSubItem("whatsnewid", "Miscellaneous News", "Miscellaneous News",  "misc_news.htm");
	

	menu.addSubItem("photoalbumid", "Aircfraft", "Aircfraft",  "aircraft_photos.htm");
	menu.addSubItem("photoalbumid", "Armour", "Armour",  "armour_photos.htm");
	menu.addSubItem("photoalbumid", "Automotive", "Automotive",  "auto_photos.htm");
	menu.addSubItem("photoalbumid", "Dioramas", "Dioramas",  "diorama_photos.htm");
	menu.addSubItem("photoalbumid", "Figures", "Figures",  "figure_photos.htm");
	menu.addSubItem("photoalbumid", "Ships", "Ships",  "ships_photos.htm");
	

	menu.addSubItem("articlesid", "Aircfraft", "Aircfraft",  "aircraft.htm");
	menu.addSubItem("articlesid", "Armour", "Armour",  "armour.htm");
	menu.addSubItem("articlesid", "Automotive", "Automotive",  "autos.htm");
      	menu.addSubItem("articlesid", "Dioramas", "Dioramas",  "dioramas.htm");
	menu.addSubItem("articlesid", "Figures", "Figures",  "figures.htm");
      	menu.addSubItem("articlesid", "Ships", "Ships",  "ships.htm");

	menu.addSubItem("linksid", "Model Clubs", "Model Clubs",  "model_clubs.htm");
	menu.addSubItem("linksid", "Personal & SIG Pages", "Personal & SIG Pages",  "general_links.htm");
	menu.addSubItem("linksid", "Model Related Companies", "Model Related Companies",  "model_companies.htm");

	menu.addSubItem("importantstuffid", "How to find us", "How to find us",  "how_to_find_us.htm");
	menu.addSubItem("importantstuffid", "Judging Guidlines", "Judging Guidlines",  "judging.htm");
        menu.addSubItem("importantstuffid", "Club Constitution", "Club Constitution",  "constitution.htm");
	
	

	menu.showMenu();
}