// JavaScript Document


function showNav() {
  if(myID != "no_section") {
	  1;
  } else {
	  return false;
  }
  var currItem = document.getElementById(myID);
  var linksItem = myID.substring(0,myID.length-1) + "_links";

  for (x=0; x<5; x ++) {
	  //alert(x + " - " + currItem.id);
    if(currItem.id != "nav") {
      if (document.getElementById(linksItem)) {
        linksItem = document.getElementById(linksItem);
        linksItem.style.display = "block";
	  }
   	  evilTwin = currItem.id.substring(0,currItem.id.length-1);
	  if (evilTwin.substring(evilTwin.length-2,evilTwin.length) == "_o") {
		  evilTwin = evilTwin + "ff";
	  }
	  //alert(evilTwin);
      if (document.getElementById(evilTwin)) {
    	evilTwin = document.getElementById(evilTwin);
    	evilTwin.style.display = "none";
      }
      currItem.style.display = "block";
      currItem = currItem.parentNode;
    } else {
      x = 5;
    }
  }
}



function doSum()
{	
	var myViews = document.myForm.views.value;
	var myFormat = document.myForm.format.value;
	
	if ((document.myForm.views.value=="") || (document.myForm.format.value=="0") || (isNaN(document.myForm.views.value)))
	{
		alert('Please complete the form.');
		return false;
	}
	else
	{
		var myResult = (myViews * myFormat);
		alert ('£' + myResult);
		return false;
	}
}

function monthText (monthNumber) {
   var Month = new Array();
       Month[0]="January";
       Month[1]="February";
       Month[2]="March";
       Month[3]="April";
       Month[4]="May";
       Month[5]="June";
       Month[6]="July";
       Month[7]="August";
       Month[8]="September";
       Month[9]="October";
       Month[10]="November";
       Month[11]="December";
	   return Month[monthNumber];
}

function verifyEmail()
{
	var themessage = "Mandatory fields: \n";
	if (document.form1.name.value=="Name")
	{
		themessage = themessage + " - Name \n";
	}
	if ((document.form1.email.value.indexOf('@') < 1) || (document.form1.email.value.length < (document.form1.email.value.indexOf('@') + 5)) )
	{
		themessage = themessage + " - Email \n";
	}
	//alert if fields are empty and cancel form submit
	if (themessage == "Mandatory fields: \n")
	{
		return true;
	}
	else
	{
	alert(themessage);
	return false;
	}
}


//recruitment nav

function showRecruitment()
{
	document.getElementById('rec_off').style.display = "none";
	document.getElementById('rec_on').style.display = "block";
}

function hideRecruitment()
{
	document.getElementById('rec_off').style.display = "block";
	document.getElementById('rec_on').style.display = "none";
}

function showPlatforms()
{
	document.getElementById('rec_two1').style.display = "none";
	document.getElementById('rec_two1a').style.display = "block";
	document.getElementById('rec_two1_links').style.display = "block";
}

function hidePlatforms()
{
	document.getElementById('rec_two1').style.display = "block";
	document.getElementById('rec_two1a').style.display = "none";
	document.getElementById('rec_two1_links').style.display = "none";
}

function showOpportunities()
{
	document.getElementById('rec_two2').style.display = "none";
	document.getElementById('rec_two2a').style.display = "block";
	document.getElementById('rec_two2_links').style.display = "block";
}

function hideOpportunities()
{
	document.getElementById('rec_two2').style.display = "block";
	document.getElementById('rec_two2a').style.display = "none";
	document.getElementById('rec_two2_links').style.display = "none";
}

function showCaseStudies()
{
	document.getElementById('rec_two3').style.display = "none";
	document.getElementById('rec_two3a').style.display = "block";
	document.getElementById('rec_two3_links').style.display = "block";
}

function hideCaseStudies()
{
	document.getElementById('rec_two3').style.display = "block";
	document.getElementById('rec_two3a').style.display = "none";
	document.getElementById('rec_two3_links').style.display = "none";
}

function showStatistics()
{
	document.getElementById('rec_two4').style.display = "none";
	document.getElementById('rec_two4a').style.display = "block";
	document.getElementById('rec_two4_links').style.display = "block";
}

function hideStatistics()
{
	document.getElementById('rec_two4').style.display = "block";
	document.getElementById('rec_two4a').style.display = "none";
	document.getElementById('rec_two4_links').style.display = "none";
}

// property nav

function showProperty()
{
	document.getElementById('prop_off').style.display = "none";
	document.getElementById('prop_on').style.display = "block";
}

function hideProperty()
{
	document.getElementById('prop_off').style.display = "block";
	document.getElementById('prop_on').style.display = "none";
}

function showPropertyResidential()
{
	document.getElementById('prop_two1').style.display = "none";
	document.getElementById('prop_two1a').style.display = "block";
}

function hidePropertyResidential()
{
	document.getElementById('prop_two1').style.display = "block";
	document.getElementById('prop_two1a').style.display = "none";
}

function showPropertyResidentialPlatforms()
{
	document.getElementById('prop_three1').style.display = "none";
	document.getElementById('prop_three1a').style.display = "block";
	document.getElementById('prop_three1_links').style.display = "block";
}
function hidePropertyResidentialPlatforms()
{
	document.getElementById('prop_three1').style.display = "block";
	document.getElementById('prop_three1a').style.display = "none";
	document.getElementById('prop_three1_links').style.display = "none";
}
function showPropertyResidentialOpportunities()
{
	document.getElementById('prop_three2').style.display = "none";
	document.getElementById('prop_three2a').style.display = "block";
	document.getElementById('prop_three2_links').style.display = "block";
}
function hidePropertyResidentialOpportunities()
{
	document.getElementById('prop_three2').style.display = "block";
	document.getElementById('prop_three2a').style.display = "none";
	document.getElementById('prop_three2_links').style.display = "none";
}
function showPropertyResidentialCaseStudies()
{
	document.getElementById('prop_three3').style.display = "none";
	document.getElementById('prop_three3a').style.display = "block";
	document.getElementById('prop_three3_links').style.display = "block";
}
function hidePropertyResidentialCaseStudies()
{
	document.getElementById('prop_three3').style.display = "block";
	document.getElementById('prop_three3a').style.display = "none";
	document.getElementById('prop_three3_links').style.display = "none";
}
function showPropertyResidentialStatistics()
{
	document.getElementById('prop_three4').style.display = "none";
	document.getElementById('prop_three4a').style.display = "block";
	document.getElementById('prop_three4_links').style.display = "block";
}
function hidePropertyResidentialStatistics()
{
	document.getElementById('prop_three4').style.display = "block";
	document.getElementById('prop_three4a').style.display = "none";
	document.getElementById('prop_three4_links').style.display = "none";
}

function showPropertyCommercial()
{
	document.getElementById('prop_two2').style.display = "none";
	document.getElementById('prop_two2a').style.display = "block";
}

function hidePropertyCommercial()
{
	document.getElementById('prop_two2').style.display = "block";
	document.getElementById('prop_two2a').style.display = "none";
}

function showPropertyCommercialPlatforms()
{
	document.getElementById('prop_three6').style.display = "none";
	document.getElementById('prop_three6a').style.display = "block";
	document.getElementById('prop_three6_links').style.display = "block";
}
function hidePropertyCommercialPlatforms()
{
	document.getElementById('prop_three6').style.display = "block";
	document.getElementById('prop_three6a').style.display = "none";
	document.getElementById('prop_three6_links').style.display = "none";
}
function showPropertyCommercialOpportunities()
{
	document.getElementById('prop_three7').style.display = "none";
	document.getElementById('prop_three7a').style.display = "block";
	document.getElementById('prop_three7_links').style.display = "block";
}
function hidePropertyCommercialOpportunities()
{
	document.getElementById('prop_three7').style.display = "block";
	document.getElementById('prop_three7a').style.display = "none";
	document.getElementById('prop_three7_links').style.display = "none";
}
function showPropertyCommercialCaseStudies()
{
	document.getElementById('prop_three8').style.display = "none";
	document.getElementById('prop_three8a').style.display = "block";
	document.getElementById('prop_three8_links').style.display = "block";
}
function hidePropertyCommercialCaseStudies()
{
	document.getElementById('prop_three8').style.display = "block";
	document.getElementById('prop_three8a').style.display = "none";
	document.getElementById('prop_three8_links').style.display = "none";
}
function showPropertyCommercialStatistics()
{
	document.getElementById('prop_three9').style.display = "none";
	document.getElementById('prop_three9a').style.display = "block";
	document.getElementById('prop_three9_links').style.display = "block";
}
function hidePropertyCommercialStatistics()
{
	document.getElementById('prop_three9').style.display = "block";
	document.getElementById('prop_three9a').style.display = "none";
	document.getElementById('prop_three9_links').style.display = "none";
}

// display nav

function showDisplay()
{
	document.getElementById('display_off').style.display = "none";
	document.getElementById('display_on').style.display = "block";
}

function hideDisplay()
{
	document.getElementById('display_off').style.display = "block";
	document.getElementById('display_on').style.display = "none";
}

function showDisplayPlatforms()
{
	document.getElementById('display_two1').style.display = "none";
	document.getElementById('display_two1a').style.display = "block";
	document.getElementById('display_two1_links').style.display = "block";
}
function hideDisplayPlatforms()
{
	document.getElementById('display_two1').style.display = "block";
	document.getElementById('display_two1a').style.display = "none";
	document.getElementById('display_two1_links').style.display = "none";
}

function showDisplayOpportunities()
{
	document.getElementById('display_two2').style.display = "none";
	document.getElementById('display_two2a').style.display = "block";
	document.getElementById('display_two2_links').style.display = "block";
}
function hideDisplayOpportunities()
{
	document.getElementById('display_two2').style.display = "block";
	document.getElementById('display_two2a').style.display = "none";
	document.getElementById('display_two2_links').style.display = "none";
}

function showDisplayCaseStudies()
{
	document.getElementById('display_two3').style.display = "none";
	document.getElementById('display_two3a').style.display = "block";
	document.getElementById('display_two3_links').style.display = "block";
}
function hideDisplayCaseStudies()
{
	document.getElementById('display_two3').style.display = "block";
	document.getElementById('display_two3a').style.display = "none";
	document.getElementById('display_two3_links').style.display = "none";
}

function showDisplayStatistics()
{
	document.getElementById('display_two4').style.display = "none";
	document.getElementById('display_two4a').style.display = "block";
	document.getElementById('display_two4_links').style.display = "block";
}
function hideDisplayStatistics()
{
	document.getElementById('display_two4').style.display = "block";
	document.getElementById('display_two4a').style.display = "none";
	document.getElementById('display_two4_links').style.display = "none";
}


// online nav

function showOnline()
{
	document.getElementById('online_off').style.display = "none";
	document.getElementById('online_on').style.display = "block";
}

function hideOnline()
{
	document.getElementById('online_off').style.display = "block";
	document.getElementById('online_on').style.display = "none";
}

function showOnlinePlatforms()
{
	document.getElementById('online_two1').style.display = "none";
	document.getElementById('online_two1a').style.display = "block";
	document.getElementById('online_two1_links').style.display = "block";
}
function hideOnlinePlatforms()
{
	document.getElementById('online_two1').style.display = "block";
	document.getElementById('online_two1a').style.display = "none";
	document.getElementById('online_two1_links').style.display = "none";
}


// motors nav

function showMotors()
{
	document.getElementById('motors_off').style.display = "none";
	document.getElementById('motors_on').style.display = "block";
}

function hideMotors()
{
	document.getElementById('motors_off').style.display = "block";
	document.getElementById('motors_on').style.display = "none";
}

function showMotorsPlatforms()
{
	document.getElementById('motors_two1').style.display = "none";
	document.getElementById('motors_two1a').style.display = "block";
	document.getElementById('motors_two1_links').style.display = "block";
}
function hideMotorsPlatforms()
{
	document.getElementById('motors_two1').style.display = "block";
	document.getElementById('motors_two1a').style.display = "none";
	document.getElementById('motors_two1_links').style.display = "none";
}

function showMotorsOpportunities()
{
	document.getElementById('motors_two2').style.display = "none";
	document.getElementById('motors_two2a').style.display = "block";
	document.getElementById('motors_two2_links').style.display = "block";
}
function hideMotorsOpportunities()
{
	document.getElementById('motors_two2').style.display = "block";
	document.getElementById('motors_two2a').style.display = "none";
	document.getElementById('motors_two2_links').style.display = "none";
}

function showMotorsCaseStudies()
{
	document.getElementById('motors_two3').style.display = "none";
	document.getElementById('motors_two3a').style.display = "block";
	document.getElementById('motors_two3_links').style.display = "block";
}
function hideMotorsCaseStudies()
{
	document.getElementById('motors_two3').style.display = "block";
	document.getElementById('motors_two3a').style.display = "none";
	document.getElementById('motors_two3_links').style.display = "none";
}

function showMotorsStatistics()
{
	document.getElementById('motors_two4').style.display = "none";
	document.getElementById('motors_two4a').style.display = "block";
	document.getElementById('motors_two4_links').style.display = "block";
}
function hideMotorsStatistics()
{
	document.getElementById('motors_two4').style.display = "block";
	document.getElementById('motors_two4a').style.display = "none";
	document.getElementById('motors_two4_links').style.display = "none";
}


// entertainment nav

function showEntertainment()
{
	document.getElementById('ent_off').style.display = "none";
	document.getElementById('ent_on').style.display = "block";
}

function hideEntertainment()
{
	document.getElementById('ent_off').style.display = "block";
	document.getElementById('ent_on').style.display = "none";
}

function showEntertainmentPlatforms()
{
	document.getElementById('ent_two1').style.display = "none";
	document.getElementById('ent_two1a').style.display = "block";
	document.getElementById('ent_two1_links').style.display = "block";
}
function hideEntertainmentPlatforms()
{
	document.getElementById('ent_two1').style.display = "block";
	document.getElementById('ent_two1a').style.display = "none";
	document.getElementById('ent_two1_links').style.display = "none";
}

function showEntertainmentOpportunities()
{
	document.getElementById('ent_two2').style.display = "none";
	document.getElementById('ent_two2a').style.display = "block";
	document.getElementById('ent_two2_links').style.display = "block";
}
function hideEntertainmentOpportunities()
{
	document.getElementById('ent_two2').style.display = "block";
	document.getElementById('ent_two2a').style.display = "none";
	document.getElementById('ent_two2_links').style.display = "none";
}

function showEntertainmentCaseStudies()
{
	document.getElementById('ent_two3').style.display = "none";
	document.getElementById('ent_two3a').style.display = "block";
	document.getElementById('ent_two3_links').style.display = "block";
}
function hideEntertainmentCaseStudies()
{
	document.getElementById('ent_two3').style.display = "block";
	document.getElementById('ent_two3a').style.display = "none";
	document.getElementById('ent_two3_links').style.display = "none";
}

function showEntertainmentStatistics()
{
	document.getElementById('ent_two4').style.display = "none";
	document.getElementById('ent_two4a').style.display = "block";
	document.getElementById('ent_two4_links').style.display = "block";
}
function hideEntertainmentStatistics()
{
	document.getElementById('ent_two4').style.display = "block";
	document.getElementById('ent_two4a').style.display = "none";
	document.getElementById('ent_two4_links').style.display = "none";
}


// travel nav

function showTravel()
{
	document.getElementById('travel_off').style.display = "none";
	document.getElementById('travel_on').style.display = "block";
}

function hideTravel()
{
	document.getElementById('travel_off').style.display = "block";
	document.getElementById('travel_on').style.display = "none";
}

function showTravelPlatforms()
{
	document.getElementById('travel_two1').style.display = "none";
	document.getElementById('travel_two1a').style.display = "block";
	document.getElementById('travel_two1_links').style.display = "block";
}
function hideTravelPlatforms()
{
	document.getElementById('travel_two1').style.display = "block";
	document.getElementById('travel_two1a').style.display = "none";
	document.getElementById('travel_two1_links').style.display = "none";
}

function showTravelOpportunities()
{
	document.getElementById('travel_two2').style.display = "none";
	document.getElementById('travel_two2a').style.display = "block";
	document.getElementById('travel_two2_links').style.display = "block";
}
function hideTravelOpportunities()
{
	document.getElementById('travel_two2').style.display = "block";
	document.getElementById('travel_two2a').style.display = "none";
	document.getElementById('travel_two2_links').style.display = "none";
}

function showTravelCaseStudies()
{
	document.getElementById('travel_two3').style.display = "none";
	document.getElementById('travel_two3a').style.display = "block";
	document.getElementById('travel_two3_links').style.display = "block";
}
function hideTravelCaseStudies()
{
	document.getElementById('travel_two3').style.display = "block";
	document.getElementById('travel_two3a').style.display = "none";
	document.getElementById('travel_two3_links').style.display = "none";
}

function showTravelStatistics()
{
	document.getElementById('travel_two4').style.display = "none";
	document.getElementById('travel_two4a').style.display = "block";
	document.getElementById('travel_two4_links').style.display = "block";
}
function hideTravelStatistics()
{
	document.getElementById('travel_two4').style.display = "block";
	document.getElementById('travel_two4a').style.display = "none";
	document.getElementById('travel_two4_links').style.display = "none";
}


// other nav

function showOther()
{
	document.getElementById('other_off').style.display = "none";
	document.getElementById('other_on').style.display = "block";
}

function hideOther()
{
	document.getElementById('other_off').style.display = "block";
	document.getElementById('other_on').style.display = "none";
}

function showOtherRetail()
{
	document.getElementById('other_two1').style.display = "none";
	document.getElementById('other_two1a').style.display = "block";
}
function hideOtherRetail()
{
	document.getElementById('other_two1').style.display = "block";
	document.getElementById('other_two1a').style.display = "none";
}

function showOtherRetailPlatforms()
{
	document.getElementById('other_three1').style.display = "none";
	document.getElementById('other_three1a').style.display = "block";
	document.getElementById('other_three1_links').style.display = "block";
}
function hideOtherRetailPlatforms()
{
	document.getElementById('other_three1').style.display = "block";
	document.getElementById('other_three1a').style.display = "none";
	document.getElementById('other_three1_links').style.display = "none";
}

function showOtherRetailOpportunities()
{
	document.getElementById('other_three2').style.display = "none";
	document.getElementById('other_three2a').style.display = "block";
	document.getElementById('other_three2_links').style.display = "block";
}
function hideOtherRetailOpportunities()
{
	document.getElementById('other_three2').style.display = "block";
	document.getElementById('other_three2a').style.display = "none";
	document.getElementById('other_three2_links').style.display = "none";
}

function showOtherRetailCaseStudies()
{
	document.getElementById('other_three3').style.display = "none";
	document.getElementById('other_three3a').style.display = "block";
	document.getElementById('other_three3_links').style.display = "block";
}
function hideOtherRetailCaseStudies()
{
	document.getElementById('other_three3').style.display = "block";
	document.getElementById('other_three3a').style.display = "none";
	document.getElementById('other_three3_links').style.display = "none";
}

function showOtherRetailStatistics()
{
	document.getElementById('other_three4').style.display = "none";
	document.getElementById('other_three4a').style.display = "block";
	document.getElementById('other_three4_links').style.display = "block";
}
function hideOtherRetailStatistics()
{
	document.getElementById('other_three4').style.display = "block";
	document.getElementById('other_three4a').style.display = "none";
	document.getElementById('other_three4_links').style.display = "none";
}

function showOtherHome()
{
	document.getElementById('other_two2').style.display = "none";
	document.getElementById('other_two2a').style.display = "block";
}
function hideOtherHome()
{
	document.getElementById('other_two2').style.display = "block";
	document.getElementById('other_two2a').style.display = "none";
}

function showOtherHomePlatforms()
{
	document.getElementById('other_three6').style.display = "none";
	document.getElementById('other_three6a').style.display = "block";
	document.getElementById('other_three6_links').style.display = "block";
}
function hideOtherHomePlatforms()
{
	document.getElementById('other_three6').style.display = "block";
	document.getElementById('other_three6a').style.display = "none";
	document.getElementById('other_three6_links').style.display = "none";
}

function showOtherHomeOpportunities()
{
	document.getElementById('other_three7').style.display = "none";
	document.getElementById('other_three7a').style.display = "block";
	document.getElementById('other_three7_links').style.display = "block";
}
function hideOtherHomeOpportunities()
{
	document.getElementById('other_three7').style.display = "block";
	document.getElementById('other_three7a').style.display = "none";
	document.getElementById('other_three7_links').style.display = "none";
}

function showOtherHomeStatistics()
{
	document.getElementById('other_three8').style.display = "none";
	document.getElementById('other_three8a').style.display = "block";
	document.getElementById('other_three8_links').style.display = "block";
}
function hideOtherHomeStatistics()
{
	document.getElementById('other_three8').style.display = "block";
	document.getElementById('other_three8a').style.display = "none";
	document.getElementById('other_three8_links').style.display = "none";
}






function showOtherPublic()
{
	document.getElementById('other_two3').style.display = "none";
	document.getElementById('other_two3a').style.display = "block";
}
function hideOtherPublic()
{
	document.getElementById('other_two3').style.display = "block";
	document.getElementById('other_two3a').style.display = "none";
}

function showOtherPublicPlatforms()
{
	document.getElementById('other_three10').style.display = "none";
	document.getElementById('other_three10a').style.display = "block";
	document.getElementById('other_three10_links').style.display = "block";
}
function hideOtherPublicPlatforms()
{
	document.getElementById('other_three10').style.display = "block";
	document.getElementById('other_three10a').style.display = "none";
	document.getElementById('other_three10_links').style.display = "none";
}

function showOtherPublicOpportunities()
{
	document.getElementById('other_three11').style.display = "none";
	document.getElementById('other_three11a').style.display = "block";
	document.getElementById('other_three11_links').style.display = "block";
}
function hideOtherPublicOpportunities()
{
	document.getElementById('other_three11').style.display = "block";
	document.getElementById('other_three11a').style.display = "none";
	document.getElementById('other_three11_links').style.display = "none";
}

function showOtherPublicStatistics()
{
	document.getElementById('other_three12').style.display = "none";
	document.getElementById('other_three12a').style.display = "block";
	document.getElementById('other_three12_links').style.display = "block";
}
function hideOtherPublicStatistics()
{
	document.getElementById('other_three12').style.display = "block";
	document.getElementById('other_three12a').style.display = "none";
	document.getElementById('other_three12_links').style.display = "none";
}


function showOtherFinancial()
{
	document.getElementById('other_two4').style.display = "none";
	document.getElementById('other_two4a').style.display = "block";
}
function hideOtherFinancial()
{
	document.getElementById('other_two4').style.display = "block";
	document.getElementById('other_two4a').style.display = "none";
}

function showOtherFinancialPlatforms()
{
	document.getElementById('other_three14').style.display = "none";
	document.getElementById('other_three14a').style.display = "block";
	document.getElementById('other_three14_links').style.display = "block";
}
function hideOtherFinancialPlatforms()
{
	document.getElementById('other_three14').style.display = "block";
	document.getElementById('other_three14a').style.display = "none";
	document.getElementById('other_three14_links').style.display = "none";
}

function showOtherFinancialOpportunities()
{
	document.getElementById('other_three15').style.display = "none";
	document.getElementById('other_three15a').style.display = "block";
	document.getElementById('other_three15_links').style.display = "block";
}
function hideOtherFinancialOpportunities()
{
	document.getElementById('other_three15').style.display = "block";
	document.getElementById('other_three15a').style.display = "none";
	document.getElementById('other_three15_links').style.display = "none";
}

function showOtherFinancialCaseStudies()
{
	document.getElementById('other_three16').style.display = "none";
	document.getElementById('other_three16a').style.display = "block";
	document.getElementById('other_three16_links').style.display = "block";
}
function hideOtherFinancialCaseStudies()
{
	document.getElementById('other_three16').style.display = "block";
	document.getElementById('other_three16a').style.display = "none";
	document.getElementById('other_three16_links').style.display = "none";
}

function showOtherFinancialStatistics()
{
	document.getElementById('other_three17').style.display = "none";
	document.getElementById('other_three17a').style.display = "block";
	document.getElementById('other_three17_links').style.display = "block";
}
function hideOtherFinancialStatistics()
{
	document.getElementById('other_three17').style.display = "block";
	document.getElementById('other_three17a').style.display = "none";
	document.getElementById('other_three17_links').style.display = "none";
}


function showOtherEducation()
{
	document.getElementById('other_two5').style.display = "none";
	document.getElementById('other_two5a').style.display = "block";
}
function hideOtherEducation()
{
	document.getElementById('other_two5').style.display = "block";
	document.getElementById('other_two5a').style.display = "none";
}

function showOtherEducationPlatforms()
{
	document.getElementById('other_three19').style.display = "none";
	document.getElementById('other_three19a').style.display = "block";
	document.getElementById('other_three19_links').style.display = "block";
}
function hideOtherEducationPlatforms()
{
	document.getElementById('other_three19').style.display = "block";
	document.getElementById('other_three19a').style.display = "none";
	document.getElementById('other_three19_links').style.display = "none";
}

function showOtherEducationOpportunities()
{
	document.getElementById('other_three20').style.display = "none";
	document.getElementById('other_three20a').style.display = "block";
	document.getElementById('other_three20_links').style.display = "block";
}
function hideOtherEducationOpportunities()
{
	document.getElementById('other_three20').style.display = "block";
	document.getElementById('other_three20a').style.display = "none";
	document.getElementById('other_three20_links').style.display = "none";
}

function showOtherEducationCaseStudies()
{
	document.getElementById('other_three21').style.display = "none";
	document.getElementById('other_three21a').style.display = "block";
	document.getElementById('other_three21_links').style.display = "block";
}
function hideOtherEducationCaseStudies()
{
	document.getElementById('other_three21').style.display = "block";
	document.getElementById('other_three21a').style.display = "none";
	document.getElementById('other_three21_links').style.display = "none";
}

function showOtherEducationStatistics()
{
	document.getElementById('other_three22').style.display = "none";
	document.getElementById('other_three22a').style.display = "block";
	document.getElementById('other_three22_links').style.display = "block";
}
function hideOtherEducationStatistics()
{
	document.getElementById('other_three22').style.display = "block";
	document.getElementById('other_three22a').style.display = "none";
	document.getElementById('other_three22_links').style.display = "none";
}


function showOtherArticles()
{
	document.getElementById('other_two6').style.display = "none";
	document.getElementById('other_two6a').style.display = "block";
}
function hideOtherArticles()
{
	document.getElementById('other_two6').style.display = "block";
	document.getElementById('other_two6a').style.display = "none";
}

function showOtherArticlesPlatforms()
{
	document.getElementById('other_three24').style.display = "none";
	document.getElementById('other_three24a').style.display = "block";
	document.getElementById('other_three24_links').style.display = "block";
}
function hideOtherArticlesPlatforms()
{
	document.getElementById('other_three24').style.display = "block";
	document.getElementById('other_three24a').style.display = "none";
	document.getElementById('other_three24_links').style.display = "none";
}

function showOtherArticlesOpportunities()
{
	document.getElementById('other_three25').style.display = "none";
	document.getElementById('other_three25a').style.display = "block";
	document.getElementById('other_three25_links').style.display = "block";
}
function hideOtherArticlesOpportunities()
{
	document.getElementById('other_three25').style.display = "block";
	document.getElementById('other_three25a').style.display = "none";
	document.getElementById('other_three25_links').style.display = "none";
}

function showOtherArticlesCaseStudies()
{
	document.getElementById('other_three26').style.display = "none";
	document.getElementById('other_three26a').style.display = "block";
	document.getElementById('other_three26_links').style.display = "block";
}
function hideOtherArticlesCaseStudies()
{
	document.getElementById('other_three26').style.display = "block";
	document.getElementById('other_three26a').style.display = "none";
	document.getElementById('other_three26_links').style.display = "none";
}

function showOtherArticlesStatistics()
{
	document.getElementById('other_three27').style.display = "none";
	document.getElementById('other_three27a').style.display = "block";
	document.getElementById('other_three27_links').style.display = "block";
}
function hideOtherArticlesStatistics()
{
	document.getElementById('other_three27').style.display = "block";
	document.getElementById('other_three27a').style.display = "none";
	document.getElementById('other_three27_links').style.display = "none";
}



// events nav

function showEvents()
{
	document.getElementById('events_off').style.display = "none";
	document.getElementById('events_on').style.display = "block";
}

function hideEvents()
{
	document.getElementById('events_off').style.display = "block";
	document.getElementById('events_on').style.display = "none";
}

function showEventsCalendar()
{
	document.getElementById('events_two2').style.display = "none";
	document.getElementById('events_two2a').style.display = "block";
	document.getElementById('events_two2_links').style.display = "block";
}

function hideEventsCalendar()
{
	document.getElementById('events_two2').style.display = "block";
	document.getElementById('events_two2a').style.display = "none";
	document.getElementById('events_two2_links').style.display = "none";
}

// the herald nav

function showHerald()
{
	document.getElementById('herald_off').style.display = "none";
	document.getElementById('herald_on').style.display = "block";
}

function hideHerald()
{
	document.getElementById('herald_off').style.display = "block";
	document.getElementById('herald_on').style.display = "none";
}

// evening times nav

function showEveningTimes()
{
	document.getElementById('et_off').style.display = "none";
	document.getElementById('et_on').style.display = "block";
}

function hideEveningTimes()
{
	document.getElementById('et_off').style.display = "block";
	document.getElementById('et_on').style.display = "none";
}

// sunday herald nav

function showSundayHerald()
{
	document.getElementById('sh_off').style.display = "none";
	document.getElementById('sh_on').style.display = "block";
}

function hideSundayHerald()
{
	document.getElementById('sh_off').style.display = "block";
	document.getElementById('sh_on').style.display = "none";
}

// west end mail nav

// function showWestEndMail()
// {
// 	document.getElementById('wem_off').style.display = "none";
// 	document.getElementById('wem_on').style.display = "block";
// }

// function hideWestEndMail()
// {
// 	document.getElementById('wem_off').style.display = "block";
// 	document.getElementById('wem_on').style.display = "none";
// }

