var hash = location.hash;

$(function(){
	$(".our_team .bio").addClass("positioned").hide();
	$(".our_team div.active").show();
	
	$(".our_team a").click(function(){
		//alert("This works");
		$(".our_team a").removeClass("active");
		$(this).addClass("active");
		$(".our_team .bio").hide();
		$(this).parent().find(".bio").show();
	});
	
	if (hash) {
		$(hash + ' a').click();
	} else {
		$('#E0709C8E-1D7D-AC31-19A0BD941F1943D3 a').click();
	}
});
