var preview_height = 47;
	$(document).ready(
		function(){
		$("#divbio").height(preview_height+"px");
		$("#divbio").css({overflow:"hidden"});
		$("#hidelink").hide();
		
		$('.togglebio').click(function(){
		var divHite = $("#divbio").height()
			if($("#divbio").height() >preview_height){
				$('#divbio').height(preview_height+"px");
			} else {
				$('#divbio').height("100%");
			}
			$("#showlink").toggle();
			$("#hidelink").toggle();
			return false;
		});
	});