/**************************************
		jQuery for Meet the Team page
**************************************/

	$(function () {
		$("#profile-container").addClass("hasJS");
		
		if(location.hash && ($(location.hash).length))
		{
			$(".profile").hide();
			$(location.hash).show();
			$(".bio-link").removeClass("active");
			$(".bio-link[href*="+location.hash+"]").addClass("active");
		}
		else
		{
			$(".profile:gt(0)").hide();
		}
		
		$(".bio-link").click (function () {
			
			$(".bio-link").removeClass("active");
			$(this).addClass("active");
					
			$("#profile-container .profile").hide();
			$($(this).attr("href")).show();
			
			return false;
		
		});
	});
