$(document).ready(function() {

	$('.biblink').each(function(index){
		$(this).click(function(){
			$(this).next().slideToggle(500);
		});
	});
});

