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

	menu = new Menu();
    menu.addItem("homeid", "Home", "Inbreds.com Home",  "welcome.html", null);
	menu.addItem("generalid", "General", "General", null,"general.html");
	menu.addItem("photosid", "Photos", "Photos",  null,"photos.html");
	menu.addItem("mediaid", "Media", "Media",  null,"media.html");
	menu.addItem("storeid", "Store", "Store",  null,"store.html");
	menu.addItem("gamesid", "Games", "Games",  null,"games.html");
    menu.addItem("searchid", "Search", "Search",  "search.html", null);

	menu.addSubItem("generalid", "Latest", "Latest",  "news.html");
	menu.addSubItem("generalid", "Poll", "Poll",  "poll.html");
	menu.addSubItem("generalid", "Discussion Forum", "Discussion Forum",  "http://pub34.ezboard.com/binbredsonlineboards");
	menu.addSubItem("generalid", "Reviews", "Reviews",  "reviews.html");
	menu.addSubItem("generalid", "Highlights", "Highlights",  "highlights.html");
	menu.addSubItem("generalid", "Vintage Site", "Vintage Site",  "original.html");
	menu.addSubItem("generalid", "Contact", "Contact",  "contact.html");

	menu.addSubItem("photosid", "Press Shots", "Press Shots",  "press_shots.html");
	menu.addSubItem("photosid", "Photo Collection", "Photo Collection",  "collection.html");
	menu.addSubItem("photosid", "Submissions", "Submissions",  "submissions.html");
	menu.addSubItem("photosid", "Flash Retrospective", "Flash Retrospective",  "retrospective.html");

	menu.addSubItem("mediaid", "Select MP3s", "Select MP3s",  "music.html");
	menu.addSubItem("mediaid", "Streaming Videos", "Videos",  "videos.html");
    menu.addSubItem("mediaid", "Flash Video", "Flash Video",  "flash_video.html");
    menu.addSubItem("mediaid", "Inbreds Radio", "Inbreds Radio",  "radio.html");

	menu.addSubItem("storeid", "Hilario CD", "Hilario CD",  "hilario.html");
	menu.addSubItem("storeid", "Kombinator CD", "Kombinator CD",  "kombinator.html");
	menu.addSubItem("storeid", "Sydney CD", "Sydney CD",  "sydney.html");
	menu.addSubItem("storeid", "BSides", "BSides",  "inbredsbsides.html");
	menu.addSubItem("storeid", "Calgary Live 1997", "Calgary Live 1997",  "inbredslive1997.html");
	menu.addSubItem("storeid", "The Kombinator Demos", "The Kombinator Demos",  "inbreds_kombinatordemos.html");
	menu.addSubItem("storeid", "Home Movies - The DVD", "Home Movies - The DVD",  "inbredsdvd.html");
	menu.addSubItem("storeid", "Plumtree 45", "Plumtree 45",  "plumtree.html");
	menu.addSubItem("storeid", "Moustache 45", "Moustache 45",  "moustache.html");
	menu.addSubItem("storeid", "Mike O Merch", "Mike O Merch",  "mikeo.html");

	menu.addSubItem("gamesid", "Browser Bingo", "Browser Bingo",  "browserbingo.html");
	menu.addSubItem("gamesid", "Tetris", "Tetris",  "tetris.html");
	menu.addSubItem("gamesid", "Breakout", "Breakout",  "breakout.html");
	menu.addSubItem("gamesid", "Bingo", "Bingo",  "bingo.html");



	menu.showMenu();
}