/* ---------------------------- */
/* SEASON - View by Season Selected			*/
/* ---------------------------- */

function pmseason()
{
	//Display 'Season Panel'
	document.getElementById("pmpanelseason").style.display="block";
	//Hide 'Location Panel'
	document.getElementById("pmpanellocation").style.display="none";
 //Hide 'Location Options'
	document.getElementById("pmpanellocationoptions").style.display="none";
 //Highlight 'Season Button'
	document.getElementById("pmseason").style.backgroundColor="#bdc7c7";
 //Remove Highlight 'Location Button'
	document.getElementById("pmlocation").style.backgroundColor="";
		//Hide All Spans
		document.getElementById("pmdc").style.backgroundColor="";
		document.getElementById("pmbalt").style.backgroundColor="";
		document.getElementById("pmnj").style.backgroundColor="";
		document.getElementById("pmphil").style.backgroundColor="";
  document.getElementById("pmhart").style.backgroundColor="";

}

function pmlocation()
{
	//Hide 'Season Panel'
	document.getElementById("pmpanelseason").style.display="none";
	//Display 'Location Panel'
	document.getElementById("pmpanellocation").style.display="block";
 //Hide 'Season Options'
	document.getElementById("pmpanelseasonoptions").style.display="none";
 //Remove Highlight 'Season Button'
	document.getElementById("pmseason").style.backgroundColor="";
 // Highlight 'Location Button'
	document.getElementById("pmlocation").style.backgroundColor="#bdc7c7";
	//Hide spans
	document.getElementById("pma").style.backgroundColor="";
	document.getElementById("pma").style.backgroundColor="";
}

function pmseasonoption(seasonselection)
{
  var testvar = seasonselection;
  //Display Panel Containing All Season Blocks
		document.getElementById("pmpanelseasonoptions").style.display="block";
		//Reveal Selected Option / Hide Others
	if(seasonselection=="A"){
		document.getElementById("pmpanelseasonA").style.display="block";
		document.getElementById("pmpanelseasonB").style.display="none";
		document.getElementById("pma").style.backgroundColor="#bdc7c7";
		document.getElementById("pmb").style.backgroundColor="";
	}
	if(seasonselection=="B"){
		document.getElementById("pmpanelseasonB").style.display="block";
	 document.getElementById("pmpanelseasonA").style.display="none";
		document.getElementById("pmb").style.backgroundColor="#bdc7c7";
		document.getElementById("pma").style.backgroundColor="";
 }
}

function pmslocationoption(locationselection)
{
  var testvar = locationselection;
  //Display Panel Containing All Location Blocks
		document.getElementById("pmpanellocationoptions").style.display="block";
		//Hide All Blocks
	 document.getElementById("pmpanellocationdc").style.display="none";
		document.getElementById("pmpanellocationbalt").style.display="none";
		document.getElementById("pmpanellocationnj").style.display="none";
		document.getElementById("pmpanellocationphil").style.display="none";
		document.getElementById("pmpanellocationhart").style.display="none";
		//Hide All Spans
		document.getElementById("pmdc").style.backgroundColor="";
		document.getElementById("pmbalt").style.backgroundColor="";
		document.getElementById("pmnj").style.backgroundColor="";
		document.getElementById("pmphil").style.backgroundColor="";
  document.getElementById("pmhart").style.backgroundColor="";

	
	//Display Selected Panel
	document.getElementById("pmpanellocation"+locationselection).style.display="block";
	
	//Highlight Selected Tab
	document.getElementById("pm"+locationselection).style.backgroundColor="#bdc7c7";

}