$(document).ready(function() {
	$("a.bio_open").click(function() {
		$(this).parent().next("blockquote").slideToggle();
		return false;
	});
	
	$("a.bio_close").click(function() {
		$(this).parent().parent("blockquote").slideToggle();
		return false;
	});
});