function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

menu = new Menu();
menu.addItem("aboutid", "About Us", "Who We Are", null, null);
menu.addItem("eventsid", "Events", "What We Do", null, null);
menu.addItem("cnotesid", "Chapter Newsletter", "Chapter Notes", null, null);
menu.addItem("communicationid", "Communication", "Reaching Our Members", null, null);
menu.addItem("homeid", "Homepage  |", "Homepage", null, null);

menu.addSubItem("aboutid", "About Us", "About Us", "http://www.sla.org/chapter/cdc/about.html");
menu.addSubItem("aboutid", "Board", "Board", "http://www.sla.org/chapter/cdc/board.html");
menu.addSubItem("aboutid", "Committees", "Committees", "http://www.sla.org/chapter/cdc/committees.html");
menu.addSubItem("aboutid", "Chapter Manual", "Chapter Manual", "http://www.sla.org/chapter/cdc/manual.html");
menu.addSubItem("aboutid", "Minutes Archives", "Minutes Archives", "http://www.sla.org/chapter/cdc/minutes/minutes-archives.html");

menu.addSubItem("eventsid", "Events Calendar", "Events Calendar", "http://www.sla.org/chapter/cdc/events.html");
menu.addSubItem("eventsid", "SLA Events", "SLA Events", "http://www.sla.org/content/Events/index.cfm");

menu.addSubItem("cnotesid", "About Chapter Notes", "About Chapter Notes", "http://www.sla.org/chapter/cdc/cnotes.html");
menu.addSubItem("cnotesid", "Current Issue", "Current Issue", "http://www.sla.org/chapter/cdc/cnotes/mar03.html");
menu.addSubItem("cnotesid", "Archives", "Archives", "http://www.sla.org/chapter/cdc/cnotes/archives.html");

menu.addSubItem("communicationid", "Discussion List", "Discussion List", "http://www.sla.org/chapter/cdc/list.html");
menu.addSubItem("communicationid", "Web Site", "Web Site", "http://www.sla.org/chapter/cdc/webteam.html");

menu.addSubItem("homeid", "Chapter Homepage", "Chapter Homepage", "http://www.sla.org/chapter/cdc/");
menu.addSubItem("homeid", "SLA Homepage", "SLA Homepage", "http://www.sla.org/");


  menu.showMenu();
}
