//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", "Monthly Events", "MOnthly Events");
	menu.addItem("reviewid", "Field Locations", "Field Locations");
menu.addItem("newsid", "Game Schedule", "Game Schedule");
	
menu.addSubItem("webmasterid", "April", "calendarapril07",  "calendarapril08.htm", "");
menu.addSubItem("webmasterid", "May", "calendarmay07",  "calendarmay07.htm", "");
menu.addSubItem("webmasterid", "June", "calendarjune07",  "calendarjune07.htm", "");
menu.addSubItem("webmasterid", "July", "calendarjuly07",  "calendarjuly07.htm", "");
menu.addSubItem("webmasterid", "August", "calendaraugust07",  "calendaraugust07.htm", "");
menu.addSubItem("webmasterid", "September", "calendarseptember07",  "calendarseptember07.htm", "");
        
	

	
menu.addSubItem("reviewid", "La Jolla High School(Setanta Game Field)", "La Jolla High School",  "ljhs.htm", "");
menu.addSubItem("reviewid", "USD Astroturf Field", "USD Astroturf Field",  "usd.htm", "");


	
menu.addSubItem("newsid", "Game Schedule", "Game Schedule",  "schedule07.htm", "");

	

	menu.showMenu();
}