$(document).ready(function() {
	$(".bioToggle").click(function() {
		$(this).next().slideToggle();
	}).next().hide();
});