$(document).ready(function()
{
	$("#trigger-bio").click(function(event)
	{
		event.preventDefault();
		$(this).hide();
		$("#cpbio").show("slow");
	});
});	
