//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("Homeid", "Home", "Congregation Ohel Moshe", "http://www.ohelmoshe.com", null);
	menu.addItem("Eventsid", "Events", "List of Events",  "http://ohelmoshe.com/Events/Events.html", null);
	menu.addItem("Servicesid", "Services", "Services Offered at Congregation Ohel Moshe",  "http://ohelmoshe.com/Activities/Activities.html", null);
	menu.addItem("MailingListid", "Mailing List", "Subscribe to Our Mailing List",  "http://ohelmoshe.com/Forms/mailinglist.html", null);
	menu.addItem("Donationid", "Make a Donation", "Make a Donation",  "http://ohelmoshe.com/Donations/donation.html", null);

menu.addItem("Galleryid", "Picture Gallery", "Picture Gallery",  "http://ohelmoshe.com/Pics/index.html", null);

menu.addItem("Linksid", "Links", "Links",  "http://ohelmoshe.com/links.html", null);

	menu.addItem("Storeid", "Store", "Store",  "http://ohelmoshe.com/Store/index.html", null);



	

	menu.showMenu();
}