$(function () {
		//can't remeber why this is there!
		//$("#profile-container").addClass("hasJS");

		if(location.hash && ($(location.hash).length))
		{
			$(".profile-link").removeClass ("active");
			$(".profile-link[href*="+location.hash+"]").addClass("active");
		}
		else
		{
			$("#lisa-bradley").addClass("active");
		}

		$(".profile-link").live ("click", function (e) {

			$(".profile-link").removeClass("active");
			$(this).addClass("active");

			$("#people-profiles .profile").hide();
			$($(this).attr("href")).show();

			e.preventDefault ();
			//return false;
		});

});

