function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("generalinfo", "General Info", "General Info",  null, null);
	menu.addItem("happenings", "Hillel Happenings", "Hillel Happenings",  null, null);
	menu.addItem("faces", "Faces of Hillel", "Faces of Hillel",  null, null);
	menu.addItem("getinvolved", "Getting Involved", "Getting Involved",  null, null);
	menu.addItem("jewishinfo", "Being Jewish", "Being Jewish",  null, null);
	menu.addItem("funstuff", "Fun Stuff", "Fun Stuff",  null, null);
	menu.addItem("blanker", "&nbsp;&nbsp;&nbsp;&nbsp;", "Designed & Produced by B. Rosenstock  webmaster@bchillel.org",  null, null);

	menu.addSubItem("generalinfo", "Hillel House at BC", "Info about Hillel of Brooklyn College",  "hillelinfo.html");
	menu.addSubItem("generalinfo", "Feedback", "Send feedback to the Webmaster",  "feedback.html");
	menu.addSubItem("generalinfo", "About bcHillel.org", "Info about this website",  "aboutsite.html");
	menu.addSubItem("generalinfo", "</a>___________________<a href='#'>", "",  "#");
	menu.addSubItem("generalinfo", "<font color='black'>Back Home</font>", "Back to the Home Page",  "index.html");
	
	menu.addSubItem("happenings", "Upcoming Events", "Upcoming Events",  "upcoming.html");
	menu.addSubItem("happenings", "Past events & trips", "Past events & trips",  "pastevents.html");
	menu.addSubItem("happenings", "Photo Album", "Photo Album",  "photos.html");	

	menu.addSubItem("faces", "Hillel Staff", "Hillel Staff",  "staff.html");
	menu.addSubItem("faces", "Executive Board / Student Council", "Executive Board / Student Council",  "board.html");
    menu.addSubItem("faces", "Clubs & Organizations", "Clubs & Organizations",  "clubs.html");

	menu.addSubItem("getinvolved", "How to Get Involved", "How to Get Involved",  "involved.html");
	menu.addSubItem("getinvolved", "Join the Mailing List", "Join the Mailing List",  "mailing.html");
	menu.addSubItem("getinvolved", "Contacts at Hillel", "Contacts at Hillel", "contacts.html");

	menu.addSubItem("jewishinfo", "What does it mean to be Jewish?", "What does it mean to be Jewish?",  "jewish.html");
	menu.addSubItem("jewishinfo", "Jewish Holidays", "Jewish Holidays",  "holidays.html");
	menu.addSubItem("jewishinfo", "Shabbat", "Shabbat",  "shabbat.html");
	menu.addSubItem("jewishinfo", "Israel", "Israel",  "israel.html");

	menu.addSubItem("funstuff", "Photo Album", "Photo Album",  "photos.html");	
	menu.addSubItem("funstuff", "Guestbook", "Guestbook",  "http://pub39.bravenet.com/guestbook/show.php?usernum=3298128561&cpv=1#top");	
	menu.addSubItem("funstuff", "Recommended<br> Links", "Recommended Links",  "links.html");
	menu.addSubItem("funstuff", "Picture Puzzle!", "Picture Puzzle!",  "puzzle.html");	
	menu.addSubItem("funstuff", "Tell a Friend", "Tell a Friend",  "tellafriend.html");	
	
	menu.showMenu();
}