// JavaScript Document
function checkPage () {
	switch (document.location.href) {
		
		case 'http://www.nasrecruitment.com/about-nas/about-nas.html':
		  document.getElementById('history').className = "active";
		  break;
		  
		case 'http://www.nasrecruitment.com/about-nas/nas-office-locations.html':
		  document.getElementById('locations').className = "active";
		  break;
		  
		case 'http://www.nasrecruitment.com/about-nas/our-talent.html':
		  document.getElementById('talent').className = "active";
		  break;
		  
		case 'http://www.nasrecruitment.com/about-nas/nas-events.html':
		  document.getElementById('meet').className = "active";
		  break;
		  
		case 'http://www.nasrecruitment.com/forms/webinar-registration.html':
		  document.getElementById('meet').className = "active";
		  break;
		  
		case 'http://www.nasrecruitment.com/about-nas/nas-network.html':
		  document.getElementById('network').className = "active";
		  break;
		  
		case 'http://www.nasrecruitment.com/about-nas/partners.html':
		  document.getElementById('partners').className = "active";
		  break
	}
}
