$(document).ready(function() {
	$("#team .copy .middle .bio .name, #team .copy .middle .bio .link").click(function() {
		$el	= $(this).siblings(".description");
		if($el.height() > 53) {
			$el.animate({ height: 53 }, 150);
			$el.next().children("a").html("&raquo; Read more")
		} else {
			bioY	= 0;
			$el.children("p").each(function() {
				bioY	+= $(this).height();
				bioY	+= parseInt($(this).css("marginTop").replace("px", ""));
			});
			$el.animate({ height: bioY }, 150);
			$el.next().children("a").html("&laquo; Close");
		}
		return false;
	});
});
