// JavaScript Document
function checkPage () {
	switch (document.location.href) {
		case 'http://www.nasrecruitment.com/our-solutions/marketing/ats-seo-engine.html':
		  document.getElementById('ase').className = "active";
		  break;
		
		case 'http://www.nasrecruitment.com/our-solutions/marketing/candidate-relationship-management.html':
		  document.getElementById('crm').className = "active";
		  break;
		  
		case 'http://www.nasrecruitment.com/our-solutions/marketing/career-site-development.html':
		  document.getElementById('csd').className = "active";
		  break;
		  
		case 'http://www.nasrecruitment.com/our-solutions/marketing/interactive-candidate-engagement-portal-ice.html':
		  document.getElementById('ice').className = "active";
		  break;
		  
		case 'http://www.nasrecruitment.com/our-solutions/marketing/live-chat.html':
		  document.getElementById('lc').className = "active";
		  break;
		  
		case 'http://www.nasrecruitment.com/our-solutions/marketing/advertising-media-buying-recommendations-planning.html':
		  document.getElementById('mbp').className = "active";
		  break;
		  
		case 'http://www.nasrecruitment.com/our-solutions/marketing/mobile-marketing.html':
		  document.getElementById('mm').className = "active";
		  break;
		  
		case 'http://www.nasrecruitment.com/our-solutions/marketing/online-contract-management.html':
		  document.getElementById('ocm').className = "active";
		  break;
		  
		case 'http://www.nasrecruitment.com/our-solutions/marketing/search-engine-marketing.html':
		  document.getElementById('sem').className = "active";
		  break;
		  
		case 'http://www.nasrecruitment.com/our-solutions/marketing/search-engine-optimization.html':
		  document.getElementById('seo').className = "active";
		  break;
		  
		case 'http://www.nasrecruitment.com/our-solutions/marketing/online-reputation-management.html':
		  document.getElementById('orm').className = "active";
		  break;
		  
		case 'http://www.nasrecruitment.com/our-solutions/marketing/social-media-strategies.html':
		  document.getElementById('sms').className = "active";
		  break;
		  
		case 'http://www.nasrecruitment.com/our-solutions/marketing/pride.html':
		  document.getElementById('p').className = "active";
		  break;
	}
}
