$(document).ready(function() {

	$(".bioLink").toggle(function(){
		$(this).children().slideDown(500);
	}, function(){
		$(this).children().slideUp(500);
	});

});