$(document).ready(function() {
	

	$("#team-thumbs a").click(function() {
		
		$("#team-image").attr("src", $(this).attr("href"));
		$("#thename").text($(this).attr("data-name"));
		$("#title").text($(this).attr("data-title"));
		$("#thebio").html($(this).parent().find(".bio-data").html());
		
		$("#team-thumbs a.active").removeClass("active");
		$(this).addClass("active");
		
		return false;
	
	});
	
	
	$("#team-thumbs a.active").trigger("click");

	
});




