//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", "Home",  null, null);
	menu.addItem("stageid", "Stage Details", "Stage Details",  "coleraine-2.htm", null);
	menu.addItem("tourformatid", "Tour Format", "Tour Format",  "tourformat.htm", null);
	menu.addItem("accommodationid", "Accommodation", "Accommodation",  "accommodation.htm", null);
	menu.addItem("startlistsid", "Start Lists", "Start Lists",  "startlists.htm", null);
	menu.addItem("resultsid", "Results", "Results",  "racereport.htm", null);
	menu.addItem("sponsorsid", "Sponsors", "Sponsors",  "sponsors.htm", null);
	menu.addItem("photosid", "Photos", "Photos",  "photos.htm", null);
	menu.addItem("entryid", "Entry", "Entry",  "entryform.htm", null);
	menu.addItem("contactsid", "Contacts", "Contacts",  "contacts.htm", null);
	

	menu.addSubItem("homeid", "Home", "Home",  "home.htm", "");
	menu.addSubItem("homeid", "Yellow Jersey", "Yellow Jersey",  "yellowjersey.htm", "");
	menu.addSubItem("homeid", "Riders Comments", "Riders Comments",  "riderscomments.htm", "");
	menu.addSubItem("homeid", "Coleraine History", "Coleraine History",  "history.htm", "");
	
	menu.showMenu();
}