function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("emailid", "Contacts.", "E-Mail Addresses, Contact info",  null, null);
	menu.addItem("showid", "Who are we?", "Our Philosophy",  null, null);
	menu.addItem("castid", "Sections to Explore.", "Links to Features",  null, null);
	menu.addItem("relatedid", "Departments.", "Links to Departments",  null, null);
	menu.addItem("togoid", "Places to Visit", "Links or Places to Check out",  null, null);
  
	menu.addSubItem("emailid", "Email & Smail", "E-Mail and Snail-Mail Addresses",  "./.htm");
	menu.addSubItem("emailid", "Editor Tom", "PAO Pic: Editor Tom at KSC (1983)",  "http://www.hq.nasa.gov/office/pao/History/alsj/mckeever.jpg");
	menu.addSubItem("showid", "Philosophy", "What makes us tick..",  "./.htm");
	menu.addSubItem("showid", "Media Articles", "Media Articles",  "./dia.htm");
    
	menu.addSubItem("castid", "Space and World News", " Space news",  "./sndaily.html");
	menu.addSubItem("castid", "Concerns", " Things that concern us",  "./t.htm");
	menu.addSubItem("castid", "Causes", " Things we support",  "./.htm");
	menu.addSubItem("castid", "Wet & Windy?", " Weather-related concerns",  "./scpwx.html");
    menu.addSubItem("castid", "Snoopy?", " Scanning and Video Links",  "./scpscan.html");
	menu.addSubItem("castid", "Consumer Advocacy", "Helping YOU get answers!!",  "./index.html#advocacy");
   
	menu.addSubItem("relatedid", "The SCP Staff", "Our Staff",  "http://condodog.com");
	menu.addSubItem("relatedid", "Cameras", "Local Cams!", "./index.html#cams");
	menu.addSubItem("relatedid", "Letters!", "Your Letters",  "./ltrs.htm");
	menu.addSubItem("relatedid", "Polls Page", "Our Polls Page",  "./pollpage.htm");
	menu.addSubItem("relatedid", "Kudos Page", "Our Supporters!", "kudos.htm");
	menu.addSubItem("relatedid", "Bulletins", "Occasional Bulletins",  "./bulletin.htm");

	menu.addSubItem("togoid", "Chats", "Our Chat Room",  "http://www.yahoogroups.com/chat/--");
	menu.addSubItem("togoid", "Our List-Server", "Our on-line Message Board",  "http://www.yahoogroups.com/group/--");
	menu.addSubItem("togoid", "Industry Pages", "Local Industry Pages",  "../the_cape/induslnk.htm");
	menu.addSubItem("togoid", "NASA Pages", "Handy NASA Pages",  "../the_cape/nasapages.htm");
	menu.addSubItem("togoid", "NASA Video+", "Live Video and Count-Down Timer, Etc.",  "../the_cape/nasaaerolinks.htm");
	menu.addSubItem("togoid", "KSC Guide", "A good guide to the KSC area",  "../ksc");
	menu.addSubItem("togoid", "KSC area Maps", "Some handy KSC Area Maps",  "../the_cape/capemaps.htm");
	menu.addSubItem("togoid", "Awards!!", "Our Awards Pages",  "./the_cape/newawrd.htm");
	menu.addSubItem("togoid", "Contests!!", "Our Contests Page",  "./contest.htm");
	menu.addSubItem("togoid", "NASA History", "NASA's History Pages",  "http://www.hq.nasa.gov/office/pao/History/");
	menu.addSubItem("togoid", "Other Links", "To our Other Links Page",  "../the_cape/newlinks.htm");
	menu.addSubItem("togoid", "OSF Hotlist", "NASA Hot Links",  "../OSF_Hotlist.htm");
	menu.showMenu();
}