//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",  null, null);
	menu.addItem("newsid", "Teams", "Teams",  null, null);
	menu.addItem("freedownloadid", "Links", "Links",  null, null);
	menu.addItem("searchengineid", "Inside Athletics", "Inside Athletics",  null, null);
	menu.addItem("miscid", "Cougar Zone Fund", "Cougar Zone Fund",  null, null);

	menu.addSubItem("webmasterid", "Home", "Home",  "http://www.cascadesports.org/", "");
	
	menu.addSubItem("newsid", "Football", "Football",  "http://www.cascadesports.org/football/", "");
	menu.addSubItem("newsid", "Baseball", "Baseball",  "http://www.cascadesports.org/baseball/", "");
	menu.addSubItem("newsid", "Basketball M", "Basketball B",  "http://www.cascadesports.org/basketballb/", "");
	menu.addSubItem("newsid", "Basketball W", "Basketball G",  "http://www.cascadesports.org/basketballg/", "");
	menu.addSubItem("newsid", "Volleyball", "Volleyball",  "http://www.cascadesports.org/volleyball/", "");
	menu.addSubItem("newsid", "Wrestling", "Wrestling",  "http://www.cascadesports.org/wrestling/", "");
	menu.addSubItem("newsid", "Track", "Track",  "http://www.cascadesports.org/track/", "");
	menu.addSubItem("newsid", "Softball", "Softball",  "http://www.cascadesports.org/softball/", "");
	menu.addSubItem("newsid", "Tennis", "Tennis",  "http://www.cascadesports.org/tennis/", "");
	menu.addSubItem("newsid", "Golf", "Golf",  "http://www.cascadesports.org/golf/", "");
	menu.addSubItem("newsid", "Cross Country", "Cross Country",  "http://www.cascadesports.org/crosscountry/", "");
	menu.addSubItem("newsid", "Soccer", "Soccer",  "http://www.cascadesports.org/soccer/", "");
	menu.addSubItem("newsid", "Swimming", "Swimming",  "http://www.cascadesports.org/swimming/", "");


	menu.addSubItem("freedownloadid", "Cascade School District Page", "Cascade School District Page",  "http://www.cascade.k12.or.us/", "_blank");
	menu.addSubItem("freedownloadid", "Oregon Live Scores", "Oregon Live Scores",  "http://www.oregonlive.com/sports/complete/", "_blank");
	
	menu.addSubItem("searchengineid", "Athletic Director", "Athletic Director",  "http://www.cascadesports.org/ad.html", "");
	menu.addSubItem("searchengineid", "Mission Statement", "Mission Statement",  "http://www.cascadesports.org/mission.html", "");
	menu.addSubItem("searchengineid", "Ticket Information", "Ticket Information", "http://www.cascadesports.org/ticket.html", "");
	menu.addSubItem("searchengineid", "Contact Us", "Contact Us",  "http://www.cascadesports.org/contact.html", "");

	menu.addSubItem("miscid", "Advertise with Us", "Advertise with Us",  "http://www.cascadesports.org/ads.html", "");
	menu.addSubItem("miscid", "About our Advertisers", "About our Advertisers",  "http://www.cascadesports.org/aboutads.html", "");
	
	menu.showMenu();
}