function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("homeid", "Home", "Home",  null, null);
	menu.addItem("booksid", "Books", "Books",  null, null);
	menu.addItem("eventsid", "Events", "Events",  null, null);
	menu.addItem("filmsid", "Films", "Films",  null, null);
	menu.addItem("gamesid", "Games", "Games",  null, null);
	menu.addItem("playsid", "Plays", "Plays",  null, null);
	menu.addItem("radioid", "Radio", "Radio",  null, null);
	menu.addItem("tvid", "TV", "TV",  null, null);

	menu.addSubItem("homeid", "PSF Home", "PSF Home",  "../psf.htm");
	menu.addSubItem("homeid", "Reviews Home", "Reviews Home",  "reviews.htm");

	menu.addSubItem("booksid", "Books TOC", "Books TOC",  "books.htm");
	menu.addSubItem("booksid", "Castle of Oblivion", "Castle of Oblivion",  "books/castle.htm");
	menu.addSubItem("booksid", "Comic Guide", "Comic Guide",  "books/comicguide.htm");
	menu.addSubItem("booksid", "Duded Dreams", "Dudes Dreams",  "books/dudesdreams.htm");
	menu.addSubItem("booksid", "Moonlighting", "Moonlighting",  "books/moonlighting.htm");
	menu.addSubItem("booksid", "Tears of Ariel II", "Tears of Ariel II",  "books/tearsofariel.htm");

	menu.addSubItem("eventsid", "Events TOC", "Events TOC",  "events.htm");
	menu.addSubItem("eventsid", "Discworld Day", "Discworld Day",  "events/discworldday.htm");
	menu.addSubItem("eventsid", "Underground Cinema Night", "Underground Cinema Night",  "events/perv.htm");
	menu.addSubItem("eventsid", "Florida Renaissance Festival", "Florida Renaissance Festival",  "events/renaissance.htm");
	menu.addSubItem("eventsid", "Hammick's Talk", "Hammick's Talk",  "events/truth.htm");
	menu.addSubItem("eventsid", "Universal Studios", "Universal Studios",  "events/universal.htm");

	menu.addSubItem("filmsid", "Films TOC", "Films TOC",  "films.htm");	
	menu.addSubItem("filmsid", "The Avengers", "The Avengers",  "films/avengers.htm");
	menu.addSubItem("filmsid", "The Butcher Boy", "The Butcher Boy",  "films/butcherboy.htm");
	menu.addSubItem("filmsid", "Chasing Amy", "Chasing Amy",  "films/chasingamy.htm");
	menu.addSubItem("filmsid", "Dark City", "Dark City",  "films/darkcity.htm");
	menu.addSubItem("filmsid", "Deep Crimson", "Deep Crimson",  "films/deepcrimson.htm");
	menu.addSubItem("filmsid", "Godzilla", "Godzilla",  "films/godzilla.htm");
	menu.addSubItem("filmsid", "Grosse Point Blank", "Grosse Point Blank",  "films/grossepointblank.htm");
	menu.addSubItem("filmsid", "Kissed", "Kissed",  "films/kissed.htm");
	menu.addSubItem("filmsid", "L.A. Confidential", "L.A. Confidential",  "films/laconfidential.htm");
	menu.addSubItem("filmsid", "Lost in Space (preview)", "Lost in Space (preview)",  "films/lostinspacepre.htm");
	menu.addSubItem("filmsid", "Metropolis", "Metropolis",  "films/metropolis.htm");
	menu.addSubItem("filmsid", "Nowhere", "Nowhere",  "films/nowhere.htm");
	menu.addSubItem("filmsid", "Wilde", "Wilde",  "films/wilde.htm");
	menu.addSubItem("filmsid", "Gods and Monsters", "Gods and Monsters",  "films/godsandmonsters.htm");
	menu.addSubItem("filmsid", "Asoka", "Asoka",  "films/asoka.htm");
	menu.addSubItem("filmsid", "The Devils Backbone", "The Devils Backbone",  "films/devilsbackbone.htm");
	menu.addSubItem("filmsid", "Little Otik", "Little Otik",  "films/littleotik.htm");
	menu.addSubItem("filmsid", "Nine Lives of Thomas Katz", "Nine Lives of Thomas Katz",  "films/ninelives.htm");

	menu.addSubItem("gamesid", "Games TOC", "Games TOC",  "games.htm");
	menu.addSubItem("gamesid", "Bloodwars", "Bloodwars",  "games/bloodwars.htm");
	menu.addSubItem("gamesid", "Car Wars - The Card Game", "Car Wars - The Card Game",  "games/carwarsCG.htm");
	menu.addSubItem("gamesid", "Dino Hunters", "Dino Hunters",  "games/dinohunters.htm");
	menu.addSubItem("gamesid", "Dungeon Quest", "Dungeon Quest",  "games/dungeonquest.htm");
	menu.addSubItem("gamesid", "Nuclear War", "Nuclear War",  "games/nuclearwar.htm");
	menu.addSubItem("gamesid", "Once Upon a Time", "Once Upon a Time",  "games/onceuponatime.htm");
	menu.addSubItem("gamesid", "Romulan Challenge", "Romulan Challenge",  "games/romulanchallenge.htm");
	menu.addSubItem("gamesid", "Starwars Interactive Video Game", "Starwars Interactive Video Game",  "games/starwarsintvid.htm");

	menu.addSubItem("playsid", "Plays TOC", "Plays TOC",  "plays.htm");
	menu.addSubItem("playsid", "The 39 Steps", "The 39 Steps",  "plays/39steps.htm");
	menu.addSubItem("playsid", "Dead Funny", "Dead Funny",  "plays/deadfunny.htm");
	menu.addSubItem("playsid", "Funny Money", "Funny Money",  "plays/funnymoney.htm");
	menu.addSubItem("playsid", "Live Bed Show", "Live Bed Show",  "plays/livebedshow.htm");
	menu.addSubItem("playsid", "Macbeth", "Macbeth",  "plays/macbeth.htm");
	menu.addSubItem("playsid", "Spiders Web", "Spiders Web",  "plays/spidersweb.htm");
	menu.addSubItem("playsid", "The Ghost Train", "The Ghost Train",  "plays/ghosttrain.htm");

	menu.addSubItem("radioid", "Radio TOC", "Radio TOC",  "radio.htm");
	menu.addSubItem("radioid", "Espedair Street", "Espedair Street",  "radio/espedair_st.htm");
	menu.addSubItem("radioid", "Tone Scientists", "Tone Scientists",  "radio/tone_scientists.htm");

	menu.addSubItem("tvid", "TV TOC", "TV TOC",  "tv.htm");

	menu.showMenu();
}
