//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("webmasterid", "Home", "Home Page",  "http://www.randolphrotary.org/", null);
	menu.addItem("newsid", "Calendar", "Club Calendar",  "http://www.randolphrotary.org/calendar.asp", null);
	menu.addItem("aboutid", "About Randolph Rotary", "About Randolph Rotary",  null, null);
	menu.addItem("searchengineid", "Rotary Links", "Rotary Links",  null, null);
	menu.addItem("miscid", "Miscellaneous", "Miscellaneous",  null, null);

	

	menu.addSubItem("aboutid", "Current Officers", "Current Officers",  "", "");
	menu.addSubItem("aboutid", "Past Presidents", "Past Presidents",  "http://www.randolphrotary.org/pastpresidents.htm", "");
	menu.addSubItem("aboutid", "History", "History",  "", "");

	menu.addSubItem("searchengineid", "Rotary International", "Rotary International",  "http://www.rotary.org/", "");
	menu.addSubItem("searchengineid", "NJ Rotary", "NJ Rotary",  "http://www.NJRotary.org/", "");
	menu.addSubItem("searchengineid", "New NJ Rotary Website", "New NJ Rotary Website", "http://www.clubrunner.ca/7470", "");
	menu.addSubItem("searchengineid", "Rotary Leadership Institute", "Rotary Leadership Institute",  "http://www.rotaryleadershipinstitute.org/", "");
	menu.addSubItem("searchengineid", "RYLA", "Rotary Youth Leadership Awards",  "http://www.armigerint.com/RYLA/", "");
	menu.addSubItem("searchengineid", "Download Forms", "Flyers and Forms for download",  "http://www.randolphrotary.org/forms.htm", "");

	menu.addSubItem("miscid", "Cnet", "Cnet",  "http://www.cnet.com/", "");
	menu.addSubItem("miscid", "RealAudio", "RealAudio",  "http://www.realaudio.com/", "");
	menu.addSubItem("miscid", "MP3.com", "MP3.com",  "http://www.mp3.com/", "");

	menu.showMenu();
}