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

	menu = new Menu();
	menu.addItem("prefaces", "Prefaces", "Prefaces", null, null);
	menu.addItem("story", "Story", "Story", null, null);
	menu.addItem("fiction", "Online Fiction", "Online Fiction", null, null);
	menu.addItem("altlit", "Alternative Literature", "Alternative Literature", null, null);
	menu.addItem("sponsors", "Sponsor Services", "Sponsor Services", null, null);

	menu.addSubItem("prefaces", "Fiction and Nonfiction", "Fiction and Nonfiction", "/prefaces/fiction.htm");
	menu.addSubItem("prefaces", "Performance and Freedom", "Performance and Freedom", "/prefaces/liberty.htm");
	menu.addSubItem("prefaces", "On Autobiography", "On Autobiography", "/prefaces/method.htm");
	menu.addSubItem("prefaces", "Keyword Matrix", "Keyword Matrix", "/prefaces/portal.htm");
	menu.addSubItem("prefaces", "The Program", "The Program", "/prefaces/program.htm");
	menu.addSubItem("prefaces", "Prospectus", "Prospectus", "/prefaces/projectxy.htm");
	menu.addSubItem("prefaces", "Public and Private", "Public and Private", "/prefaces/public.htm");
	menu.addSubItem("prefaces", "Willingness: A Life Aesthetic", "Willingness: A Life Aesthetic", "/prefaces/willing.htm");
	menu.addSubItem("prefaces", "Invocation: The Hunt", "Invocation: The Hunt", "/prefaces/invocation.htm");
	menu.addSubItem("prefaces", "Sacrament", "Sacrament", "/prefaces/sacrament.htm");
	menu.addSubItem("prefaces", "Prelude", "Prelude", "/prefaces/prelude.htm");
	menu.addSubItem("prefaces", "Yet Another Preface", "Yet Another Preface", "/prefaces/another.htm");
	menu.addSubItem("prefaces", "Wordwebs: Core Topics", "Wordwebs: Core Topics", "/prefaces/core.htm");
	menu.addSubItem("prefaces", "Story of My Life", "Story of My Life", "/prefaces/story.htm");


	menu.addSubItem("story", "The Baby Boom", "The Baby Boom", "/story/babyboom.htm");
	menu.addSubItem("story", "The Boys in the Park", "The Boys in the Park", "/story/Boys.htm");
	menu.addSubItem("story", "Trumped in Peckerdom", "Trumped in Peckerdom", "/story/Trumped.htm");
	menu.addSubItem("story", "Of Ducks, Trucks and Bucks", "Of Ducks, Trucks and Bucks", "/story/Ducks.htm");
	menu.addSubItem("story", "Steven King Through Rose-Colored Eyes", "Steven King Through Rose-Colored Eyes",  "/story/Kingrose.htm");
	menu.addSubItem("story", "The Meaning of Life", "The Meaning of Life", "/story/Meaning.htm");
	menu.addSubItem("story", "Deep Summer", "Deep Summer", "http://www.alternativeculture.com/lit/summer.htm");
menu.addSubItem("story", "Just Coyotes", "Just Coyotes", "http://www.alternativeculture.com/lit/Coyotes.htm");

	menu.addSubItem("fiction", "Download E-books", "Download E-books", "http://cougarwebworks.com/downloads/");
	menu.addSubItem("fiction", "Future.Con - SciFi", "Future.Con - SciFi", "http://alternativeculture.com/futurecon.htm");
	menu.addSubItem("fiction", "Interactive Fiction", "Interactive Fiction", "/fiction/start.htm");
	menu.addSubItem("fiction", "Life: A Novel", "Life: A Novel", "/life/index.htm");
	menu.addSubItem("fiction", "Alternative Fiction", "Alternative Fiction",  "http://www.alternativeculture.com/lit/");
      menu.addSubItem("fiction", "Fiction reviews", "Fiction reviews",  "http://www.alternativeculture.com/books/books6.htm");
	menu.addSubItem("fiction", "Editing your fiction", "Editing your fiction",  "/editing.htm");

	menu.addSubItem("altlit", "Stories, essays, poetry", "Stories, essays, poetry",  "http://www.alternativeculture.com/lit/");
	menu.addSubItem("altlit", "Reviews and commentary", "Reviews and commentary",  "http://www.alternativeculture.com/books/");
	menu.addSubItem("altlit", "Nature, lifestyle", "Nature, lifestyle", "http://www.alternativeculture.com/nature/");
	menu.addSubItem("altlit", "Spirituality, philosophy", "Spirituality, philosophy",  "http://www.alternativeculture.com/spirit/");
	menu.addSubItem("altlit", "AltCulture Blog", "AltCulture Blog",  "http://www.alternativeculture.com/blog/");
	menu.addSubItem("altlit", "Cougar WebWorks Publications", "Cougar WebWorks Publications",  "http://cougarwebworks.com");

	menu.addSubItem("sponsors", "Amazon Books", "Amazon Books",  "http://www.alternativeculture.com/books/");
	menu.addSubItem("sponsors", "HyperLife Editing Services", "HyperLife Editing Services",  "/editing.htm");

	menu.showMenu();
}