function showToolbar(){// AddItem(id, text, hint, location, alternativeLocation);// AddSubItem(idParent, text, hint, location);	menu = new Menu();	menu.addItem("whatsnewid", "What'sNew", "What'sNew",  null, null);	menu.addItem("portfolioid", "Portfolio", "Portfolio",  null, null);	menu.addItem("galleryid", "Gallery", "Gallery",  null, null);	menu.addItem("novelid", "Novel", "Novel",  null, null);	menu.addItem("projectid", "Projects", "Projects",  null, null);	menu.addItem("familyid", "Family", "Family",  null, null);	menu.addItem("linksid", "Links", "Links",  null, null);	menu.addItem("cvid", "CV", "CV",  null, null);menu.addSubItem("whatsnewid", "What'sNew", "What'sNew",  "whatsnew.htm");	menu.addSubItem("portfolioid", "ACE Print Promotions", "ACE Print Promotions",  "../pfolio/pfolio.htm#stakis");	menu.addSubItem("portfolioid", "Freelance", "Freelance",  "../pfolio/pfolio.htm#freelance");	menu.addSubItem("portfolioid", "Altair", "Altair",  "../pfolio/pfolio.htm#altair");	menu.addSubItem("portfolioid", "Kall Kwik", "Kall Kwik",  "../pfolio/pfolio.htm#kallkwik");	menu.addSubItem("galleryid", "Photoshop", "Photoshop",  "../gall/gallery.htm");	menu.addSubItem("galleryid", "ID3", "ID3",  "../gall/id3/fID3.htm");	menu.addSubItem("galleryid", "Bryce", "Bryce", "../gall/bryce/fBRC.htm");	menu.addSubItem("novelid", "Genesis", "Genesis", "../novel/novel.htm#genesis");	menu.addSubItem("novelid", "Extract", "Extract",  "../novel/extract01.htm");      menu.addSubItem("novelid", "Ships", "Ships",  "../novel/novel.htm#ships");	menu.addSubItem("novelid", "Worlds", "Worlds",  "../novel/novel.htm#worlds");      menu.addSubItem("novelid", "Miscellaneous", "Miscellaneous",  "../novel/draco.htm");	menu.addSubItem("projectid", "The Eagles", "and The Wolves",  "../novel/novel.htm");	menu.addSubItem("projectid", "Empire", "of the Elves",  "../proj/elves/elves_01.htm");	menu.addSubItem("projectid", "Flight", "of the Peregrine", "../proj/peregrine/pereg_00.htm");	menu.addSubItem("projectid", "The Dark Secret", "of Castle Kernstadt",  "../proj/kern/kern_00.htm");	menu.addSubItem("projectid", "Parallel Threads", "Parallel Threads",  "../proj/kern/kern_00.htm");	menu.addSubItem("projectid", "Proximity Alert", "a Trek story",  "../proj/prox/prox00.htm");	menu.addSubItem("familyid", "Kids", "Kids",  "../family/family.htm");	menu.addSubItem("familyid", "Family Tree", "Family Tree",  "../family/familytree_01.htm");	menu.addSubItem("familyid", "Newsletter", "Newsletter",  "../family/newsletter/newsletter_00.htm");		menu.addSubItem("linksid", "Traveller", "Traveller",  "../links/ links.htm#traveller");	menu.addSubItem("linksid", "Babylon 5", "Babylon 5",  "../links/ links.htm#babylon5");	menu.addSubItem("linksid", "Graphics", "Graphics",  "../links/ links.htm#graphics");	menu.addSubItem("linksid", "Books", "Books",  "../links/ links.htm#books");	menu.addSubItem("linksid", "Music", "Music",  "../links/ links.htm#music");	menu.addSubItem("linksid", "Comedy", "Comedy",  "../links/ links.htm#comedy");	menu.addSubItem("linksid", "Languages", "Languages",  "../links/ links.htm#lingo");	menu.addSubItem("linksid", "Civilization", "Civilization",  "../links/ links.htm#civ2");	menu.addSubItem("cvid", "CV", "CV",  "../cv/akeelcv.htm");	menu.showMenu();}
