// JavaScript Documentfunction checkPage () {	switch (document.location.href) {		case 'http://www.nasrecruitment.com/our-solutions/nas-employment-branding.html':		  document.getElementById('branding').className = "active";		  break;		  		case 'http://www.nasrecruitment.com/our-solutions/nas-hr-consulting.html':		  document.getElementById('consulting').className = "active";		  break; 				case 'http://www.nasrecruitment.com/our-solutions/nas-hr-industry-specific-strategies.html':		  document.getElementById('industries').className = "active";		  break;		  		case 'http://www.nasrecruitment.com/our-solutions/nas-hr-media-buying-recommendations-placement.html':		  document.getElementById('media').className = "active";		  break;		  		case 'http://www.nasrecruitment.com/our-solutions/nas-hr-strategic-planning.html':		  document.getElementById('strategic').className = "active";		  break;		  		case 'http://www.nasrecruitment.com/our-solutions/nas-hr-interactive-recruitment-strategies.html':		  document.getElementById('interactive').className = "active";		  break;	}}