// Jquery
$(document).ready(function(){
		$(".showbio").next(".bio").hide();
		$(".showbio").toggle(function() {
				$(this).html("<a href=\"\">Close</a>");
				$(this).next(".bio").slideDown("normal");
			}, function() {
				$(this).html("<a href=\"\">View Bio &raquo;</a>");
				$(this).next(".bio").slideUp("normal");
			});
});