$(function() {
	$('.show_bio').click( function() {
		$('.bio').hide(); // hide all
		$(this).parent().find('.bio').show('fast');
		return false;
	});
	$('.bio').click( function() {
		$(this).hide('fast');
		return false;
	});
});

