function loader()
{
   var values = [], values;
   var hashes = window.location.href.slice(window.location.href.indexOf('?') + 1).split('&');

   if (hashes == "tournaments")
   {
      tournamentsChange();
   }
   if (hashes == "recreational")
   {
      recreationalChange();
   }
   if (hashes == "competitive")
   {
      competitiveChange();
   }
   if (hashes == "classes")
   {
      classesChange();
   }
}

function mainChange()
{
	document.getElementById("homePage_layer").style.display = 'block';
	document.getElementById("mainIframes").style.display = 'none';
	document.getElementById("topBanner").src = 'images/newimages/main_sports_header.png' ;
}

function recreationalChange()
{
    document.getElementById("ezframe").src = "http://activities-byu-idaho.ezleagues.ezfacility.com/leagues.aspx?facility_id=683&framed=1";
    document.getElementById("ezframe").width = '540px';
	document.getElementById("homePage_layer").style.display = 'none';
	document.getElementById("mainIframes").style.display = 'block';
	document.getElementById("topBanner").src = 'images/newimages/rec_sports_header.png' ;
}

function competitiveChange()
{
    document.getElementById("ezframe").src = "http://activities-byu-idaho.ezleagues.ezfacility.com/leagues.aspx?facility_id=683&framed=1";
    document.getElementById("ezframe").width = '540px';
	document.getElementById("homePage_layer").style.display = 'none';
	document.getElementById("mainIframes").style.display = 'block';
	document.getElementById("topBanner").src = 'images/newimages/comp_sports_header.png' ;
}

function tournamentsChange()
{
    document.getElementById("ezframe").src = "http://activities-byu-idaho.ezleagues.ezfacility.com/tournaments.aspx?facility_id=683&framed=1";
    document.getElementById("ezframe").width = '540px';
	document.getElementById("homePage_layer").style.display = 'none';
	document.getElementById("mainIframes").style.display = 'block';
	document.getElementById("topBanner").src = 'images/newimages/tourn_sports_header.png' ;
}

function classesChange()
{
    document.getElementById("ezframe").src = "http://activities-byu-idaho.ezleagues.ezfacility.com/classes.aspx?facility_id=683&framed=1";
    document.getElementById("ezframe").width = '540px';
	document.getElementById("homePage_layer").style.display = 'none';
	document.getElementById("mainIframes").style.display = 'block';
	document.getElementById("topBanner").src = 'images/newimages/class_sports_header.png' ;
}