function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("themanid", "the man", "everything you want to know about eddie",  null, null);
	menu.addItem("themythid", "the myth", "the gospel according to st. eddie",  null, null);
	menu.addItem("theshoesid", "the shoes", "faabulous",  null, null);
	menu.addItem("thestuffid", "the stuff", "downloads, pix, buy stuff and more!",  null, null);
	menu.addItem("thesiteid", "the site", "CoD at your service",  null, null);
menu.addItem("homeid", "HOME", "back to front",  null, null);

	menu.addSubItem("themanid", "the bio", "biography of the man",  "themannew.html");
	menu.addSubItem("themanid", "the scrapbook", "photos of the man",  "photos.html");
	menu.addSubItem("themanid", "groovy news", "up to date happenings",  "news.html");
	menu.addSubItem("themythid", "the articles", "interviews and reviews",  "mythnew.html");
menu.addSubItem("themythid", "tour info", "current tour info",  "tour.html");
	menu.addSubItem("themythid", "tour archives", "Circle 2000 archive",  "usdates.html");
	menu.addSubItem("themythid", "stage & screen", "Star!",  "movies.html");
	 

	menu.addSubItem("theshoesid", "the shoes", "imelda marcos favorite page",  "shoesnew.html");
menu.addSubItem("theshoesid", "the hive", "chat with other izzardites",  "chat.html");
menu.addSubItem("theshoesid", "izzard.com board", "the official board",  "http://www.voy.com/34798/");menu.addSubItem("theshoesid", "CoD Board", "the unofficial board",  "http://auntiemomo.com/forum/index.php");
menu.addSubItem("theshoesid","CoD Treehouse","join us!","http://groups.yahoo.com/group/thecakeordeathtreehouse/");
  

	menu.addSubItem("thestuffid", "shop eddie", "vids, cds, etc.",  "collection.html");
	menu.addSubItem("thestuffid", "fun stuff", "downloads, wallpaper, sounds",  "fun.html");
menu.addSubItem("thestuffid", "screencap theatre", "screen captures",  "screencaptheatre.html");
	menu.addSubItem("thestuffid", "free sticker!", "get your free CoD sticker",  "sticker.html");
	menu.addSubItem("thestuffid", "the CoD Cabana", "buy stuff from Cake or Death",  "http://www.cafepress.com/cp/store/store.aspx?storeid=cakeordeath");

	menu.addSubItem("thesiteid", "site updates", "the latest on CoD",  "updates.html");
	menu.addSubItem("thesiteid", "FAQ", "your questions answered",  "faq.html");
	menu.addSubItem("thesiteid", "site map", "where to go on CoD",  "sitemap.html");
	menu.addSubItem("thesiteid", "eddienet", "links to eddie sites",  "links.html");
	menu.addSubItem("thesiteid", "CoD Network", "advertise on CoD",  "networking.html");
	menu.addSubItem("thesiteid", "guestbook", "sign/read the book",  "http://www.auntiemomo.com/burningbook/index.php");menu.addSubItem("thesiteid", "email me", "email me",  "mailto:&#108;&#121;&#110;&#64;&#97;&#117;n&#116;&#105;&#101;&#109;&#111;mo.&#99;om");
menu.addSubItem("thesiteid", "MOMOCAM!", "what's auntie momo doing?",  "momocam.html");
menu.addSubItem("homeid", "HOME", "back!",  "welcome.html");
menu.addSubItem("homeid", "Feedback", "talk to us", "feedback.html");

	menu.showMenu();
}
