//Top Nav bar script v2.1- http://www.dynamicdrive.com/dynamicindex1/sm/index.htm

function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location, linktarget);

	menu = new Menu();
	menu.addItem("about", "About Hillel", "About Hillel at the University of New Mexico",  null, null);
	menu.addItem("survey", "Survey", "Fill in to get on e-mail list", "form.html", null);
	menu.addItem("photos", "Photos", "Hillel Photos",  null, null);
	menu.addItem("other", "Other", "Other",  null, null);
	menu.addItem("links", "Links", "Links",  null, null);
	menu.addItem("birthright", "FREE Trip to Israel", "Birthright Israel", "israeltrip.html", null);

	menu.addSubItem("about", "What Is Hillel?", "What is Hillel?",  "whatishillel.html", "");
	menu.addSubItem("about", "Hillel Leadership", "Hillel Leadership",  "leadership.html", "");
	menu.addSubItem("about", "The Aaron David Bram Hillel House", "Aaron David Bram Hillel House",  "house.html", "");

	menu.addSubItem("photos", "Retreat 2003", "Retreat 2003", "Retreat2003/index.htm", "");
	menu.addSubItem("photos", "Lech Lecha 2003", "Lech Lecha 2003",  "LechLecha2003/lechlecha.htm", "");
	menu.addSubItem("photos", "Passover 2003", "Passover 2003",  "Passover2003/passover.htm", "");
	menu.addSubItem("photos", "Navajo Shabbat done by Shawn Price and Marilyn Schultz's Art Show ", "Navajo Shabbat done by Shawn Price and Marilyn Schultz's Art Show ",  "ShabbatMay03/shabbat.htm", "");
	menu.addSubItem("photos", "2003 End of the Year BBQ", "2003 End of the Year BBQ", "BBQ2003/bbq.htm", "");

	menu.addSubItem("other", "Upcoming Conferences", "Upcoming Conferences",  "conferences.html", "");
	menu.addSubItem("other", "Housing and Work Opportunities", "Housing and Work Opportunities",  "opportunities.html", "");
	menu.addSubItem("other", "Annual Lech Lecha Awards Dinner", "Annual Lech Lecha Awards Dinner", "lechlecha2004.html", "");
	
	menu.addSubItem("links", "Jewish Federation of Greater Albuquerque", "which supports UNM Hillel and many other Jewish organizations in New Mexico ",  "http://www.jewishnewmexico.org/", "");
	menu.addSubItem("links", "New Mexico Jewish Link", "the local Jewish newspaper ",  "http://www.nmjewishlink.com/", "");
	menu.addSubItem("links", "UNM Religious Studies Department", "UNM Religious Studies",  "http://www.unm.edu/~religion/", "");
	menu.addSubItem("links", "Congregation Albert", "Albert", "http://www.congregationalbert.org/", "");
	menu.addSubItem("links", "Congregation B'nai Israel", "B'nai Israel", "http://www.bnaiisrael-nm.org/", "");
	menu.addSubItem("links", "Albuquerque Chabbad", "Chabbad", "http://www.chabadnm.org/", "");
	menu.addSubItem("links", "Nahalat Shalom", "Nahalat Shalom", "http://www.nahalatshalom.org", "");

	menu.showMenu();
}