//Top Nav bar script v2- http://www.dynamicdrive.com/dynamicindex1/sm/index.htm

function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("colorsid", "Team Colors", "Team Colors", null, null);
	menu.addItem("mascotsid", "Team Mascots", "Team Mascots", "http://www.gamedaycolors.com/mascots.asp", null);
	menu.addItem("collegeid", "College Teams", "College Teams", null, null);
	menu.addItem("proid", "Pro Teams", "Pro Teams", null, null);
	menu.addItem("fundraisingid", "School Fundraising", "School Fundraising", "http://www.gamedaycolors.com/Fundraising/", null);
	menu.addItem("galleryid", "Photo Gallery", "Photo Gallery", "http://www.gamedaycolors.com/gallery/", null);
	menu.addItem("customid", "Custom", "Custom", "http://www.gamedaycolors.com/custom/", null);
	
	menu.addSubItem("colorsid", "Black", "Black Is 1 Of Your Teams Colors",  "http://www.gamedaycolors.com/colors.asp?search=black");	
	menu.addSubItem("colorsid", "Blue or Navy", "Blueor Navy Is 1 Of Your Teams Colors",  "http://www.gamedaycolors.com/colors.asp?search=blue");
	menu.addSubItem("colorsid", "Brown", "Brown Is 1 Of Your Teams Colors",  "http://www.gamedaycolors.com/colors.asp?search=brown");
	menu.addSubItem("colorsid", "Gold", "Gold Is 1 Of Your Teams Colors",  "http://www.gamedaycolors.com/colors.asp?search=gold");
	menu.addSubItem("colorsid", "Gray", "Gray Is 1 Of Your Teams Colors",  "http://www.gamedaycolors.com/colors.asp?search=gray");
	menu.addSubItem("colorsid", "Green", "Green Is 1 Of Your Teams Colors",  "http://www.gamedaycolors.com/colors.asp?search=Green");	
	menu.addSubItem("colorsid", "Maroon", "Maroon Is 1 Of Your Teams Colors",  "http://www.gamedaycolors.com/colors.asp?search=maroon");
	menu.addSubItem("colorsid", "Orange", "Orange Is 1 Of Your Teams Colors",  "http://www.gamedaycolors.com/colors.asp?search=Orange");
	menu.addSubItem("colorsid", "Purple", "Purple Is 1 Of Your Teams Colors",  "http://www.gamedaycolors.com/colors.asp?search=purple");
	menu.addSubItem("colorsid", "Red", "Red Is 1 Of Your Teams Colors",  "http://www.gamedaycolors.com/colors.asp?search=red");
	menu.addSubItem("colorsid", "Silver", "Silver Is 1 Of Your Teams Colors",  "http://www.gamedaycolors.com/colors.asp?search=Silver");	
	menu.addSubItem("colorsid", "White", "White Is 1 Of Your Teams Colors",  "http://www.gamedaycolors.com/colors.asp?search=White");
	menu.addSubItem("colorsid", "Yellow", "Yellow Is 1 Of Your Teams Colors",  "http://www.gamedaycolors.com/colors.asp?search=yellow");
	
	
	menu.addSubItem("collegeid", "ACC", "Boston College, Clemson, Duke, Florida State, Georgia Tech, Miami, Maryland, NC State, North Carolina, Virginia, Virginia Tech and Wake Forest",  "http://www.gamedaycolors.com/team_results.asp?search=ACC");
	menu.addSubItem("collegeid", "Big 12", "Baylor, Colorado, Iowa State, Kansas, Kansas State, Missouri, Nebraska, Oklahoma, Oklahoma State, Texas, Texas A&M and Texas Tech",  "http://www.gamedaycolors.com/team_results.asp?search=Big 12");
	menu.addSubItem("collegeid", "Big East", "Cincinnati, Connecticut, Louisville, Pittsburgh, Rutgers, South Florida, Syracuse and West Virginia",  "http://www.gamedaycolors.com/team_results.asp?search=Big East");
	menu.addSubItem("collegeid", "Big 10", "Illinois, Indiana, Iowa, Michigan, Michigan State, Minnesota, Northwestern, Ohio State, Penn State, Purdue and Wisconsin",  "http://www.gamedaycolors.com/team_results.asp?search=Big 10");
	menu.addSubItem("collegeid", "Conference USA", "Central Florida, East Caronlina, Houston, Marshall, Memphis, Rice, SMU, Southern Miss, Tulane, Tulsa, UAB and UTEP",  "http://www.gamedaycolors.com/team_results.asp?search=Conference USA");
	menu.addSubItem("collegeid", "IA Independent", "Army, Navy, Notre Dame and Temple",  "http://www.gamedaycolors.com/team_results.asp?search=IA Independents");
	menu.addSubItem("collegeid", "Mid-American", "Akron, Ball State, Bowling Green, Buffalo, Central Michigan, Eastern Michigan, Kent State, Miami (Ohio), Northern Illinois, Ohio, Toledo and Western Michigan",  "http://www.gamedaycolors.com/team_results.asp?search=Mid-American");
	menu.addSubItem("collegeid", "Mountain West", "Air Force, BYU, Colorado State, New Mexico, San Diego State, TCU, UNLV, Utah and Wyoming",  "http://www.gamedaycolors.com/team_results.asp?search=Mountain West");
	menu.addSubItem("collegeid", "Pac 12", "Arizona, Arizona State, California, Oregon, Oregon State, Stanford, UCLA, USC Washington and Washington State",  "http://www.gamedaycolors.com/team_results.asp?search=Pac-12");
	menu.addSubItem("collegeid", "SEC", "Alabama, Arkansas, Auburn, Florida, Georgia, Kentucky, LSU, Mississippi, Mississippi State, South Caronlina, Tennessee and Vanderbilt",  "http://www.gamedaycolors.com/team_results.asp?search=SEC");
	menu.addSubItem("collegeid", "Sun Belt", "Arkansas State, Florida Atlantic, Florida International, Louisiana Lafayette, Louisiana Monroe, Middle Tennessee State, North Texas and Troy",  "http://www.gamedaycolors.com/team_results.asp?search=Sun Belt");
	menu.addSubItem("collegeid", "WAC", "Boise State, Fresno State, Hawaii, Idaho, Louisiana Tech, Nevada, New Mexico State, San Jose State and Utah State",  "http://www.gamedaycolors.com/team_results.asp?search=WAC");
	
	menu.addSubItem("proid", "NFL", "NFL", "http://www.gamedaycolors.com/team_results.asp?search=NFL");
	menu.addSubItem("proid", "NBA", "NBA", "http://www.gamedaycolors.com/team_results.asp?search=NBA");
	menu.addSubItem("proid", "NHL", "NHL", "http://www.gamedaycolors.com/team_results.asp?search=NHL");
	menu.addSubItem("proid", "MLB", "MLB", "http://www.gamedaycolors.com/team_results.asp?search=MLB");
	
			
	menu.showMenu();
}

