//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("aboutusid", "About Us", "About Us",  null, null);
	menu.addItem("scheduleid", "Schedule", "Schedule",  null, null);
	menu.addItem("Photosid", "Photos", "Photos",  null, null);
	menu.addItem("Rulesid", "Rules", "Rules",  null, null);
	menu.addItem("linksid", "Links", "Links",  null, null);

	menu.addSubItem("aboutusid", "About Us", "About Us",  "http://www.pitstopraceway.com/mahora/", "");

	menu.addSubItem("scheduleid", "2005 Schedule", "2005 Schedule",  "http://www.pitstopraceway.com/mahora/schedule.htm", "");

	menu.addSubItem("Photosid", "3/20/05 Event", "3/20/05 Event",  "http://www.pitstopraceway.com/mahora/", "");

	menu.addSubItem("Rulesid", "Box Stock Class", "Box Stock Class",  "http://www.pitstopraceway.com/mahora/boxstockrules.htm", "");
	menu.addSubItem("Rulesid", "M/T-X/T Class", "M/T-X/T Class",  "http://www.pitstopraceway.com/mahora/mtxtrules.htm", "");
	
	menu.addSubItem("linksid", "A and H Hobbies", "A and H Hobbies",  "http://www.aandhhobbies.com/", "");
	menu.addSubItem("linksid", "Pit Stop Raceway", "Pit Stop Raceway",  "http://www.pitstopraceway.com/", "");
	menu.addSubItem("linksid", "E-Graph Tech", "E-Graph Tech",  "http://www.egraphtech.com/", "");	

	menu.showMenu();
}