//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("tripid", "Race/Trip Reports/Results", "Race/Trip Reports/Results",  null, null);
	menu.addItem("sponsorid", "Sponsors/Raffle", "Sponsors/Raffle",  null, null);
	menu.addItem("bioid", "Bio/Contact", "Bio/Contact",  null, null);
	menu.addItem("linkid", "Press/Links", "Links",  null, null);
	menu.addItem("condoid", "Properties", "Condo",  null, null);
	menu.addItem("bookid", "Writing Projects", "Writing Projects",  null, null);
	
	menu.addSubItem("homeid", "Home", "Home",  "index.htm", "");
		

	menu.addSubItem("tripid", "Race Reports", "Race Reports",  "race_rep.htm", "");
	menu.addSubItem("tripid", "Trip Reports", "Trip Reports",  "trip.htm", "");
	menu.addSubItem("tripid", "Race Results", "Race Results",  "race_results.html", "");
	menu.addSubItem("tripid", "Race Schedule", "Race Schedule",  "schedule_2006.html", "");
	
	menu.addSubItem("sponsorid", "Current Sponsors", "Current Sponsors",  "sponsor.htm", "");
	menu.addSubItem("sponsorid", "Sponsorship Levels", "Sponsorship Levels",  "sponsor1.htm", "");
	menu.addSubItem("sponsorid", "Gear We Use", "Gear We Use",  "gear.html", "");
	menu.addSubItem("sponsorid", "Raffle", "Raffle",  "raffle.htm", "");
	
	menu.addSubItem("bioid", "Bio/Contact", "Bio/Contact",  "bio.htm", "");
	menu.addSubItem("bioid", "Nic Stover", "Nic Stover",  "nic.htm", "");
	menu.addSubItem("bioid", "Jen Garretson", "Jen Garretson",  "jen.htm", "");
	menu.addSubItem("bioid", "Brad Acker", "Brad Acker",  "brad.htm", "");
	menu.addSubItem("bioid", "Jay Merritt", "Jay Merritt",  "jay.htm", "");
	
	
	menu.addSubItem("linkid", "Press", "press",  "press.html", "");
	menu.addSubItem("linkid", "Links", "Links",  "links.html", "");
	
	menu.addSubItem("condoid", "Condo Before & After Pics", "Condo Before & After Pics",  "condo.html", "");
	menu.addSubItem("condoid", "Condo Rental Information", "Condo Rental Information",  "condo2.html", "");
    menu.addSubItem("condoid", "For Sale Properties", "For Sale Properties",  "forsale.html", "");
	
	menu.addSubItem("bookid", "Thrill of Victory", "Thrill of Victory",  "book.html", "");
	menu.addSubItem("bookid", "Other Projects", "Other Projects",  "writing.html", "");
	
	menu.showMenu();
}