// JavaScript Document
function checkPage () {
	switch (document.location.href) {
		case 'http://www.nasrecruitment.com/our-solutions/messaging/brand-ambassador-training.html':
		  document.getElementById('bat').className = "active";
		  break;
		  
		case 'http://www.nasrecruitment.com/our-solutions/messaging/brand-measurement.html':
		  document.getElementById('be').className = "active";
		  break;
		  
		case 'http://www.nasrecruitment.com/our-solutions/messaging/campus-recruitment-strategies.html':
		  document.getElementById('crs').className = "active";
		  break;
		  
		case 'http://www.nasrecruitment.com/our-solutions/messaging/community-portals.html':
		  document.getElementById('cp').className = "active";
		  break;
		  
		case 'http://www.nasrecruitment.com/our-solutions/messaging/diversity-recruitment-strategies.html':
		  document.getElementById('drs').className = "active";
		  break;
		  
		case 'http://www.nasrecruitment.com/our-solutions/messaging/employment-branding.html':
		  document.getElementById('eb').className = "active";
		  break;
		  
		case 'http://www.nasrecruitment.com/our-solutions/messaging/global-branding.html':
		  document.getElementById('gb').className = "active";
		  break;
		  
		case 'http://www.nasrecruitment.com/our-solutions/messaging/onboarding-programs.html':
		  document.getElementById('o').className = "active";
		  break;
		  
		case 'http://www.nasrecruitment.com/our-solutions/messaging/online-reputation-management.html':
		  document.getElementById('orm').className = "active";
		  break;
		
	}
}
