$(document).ready(function() {
	
	$('a.bio').click(function() {
		var text = $(this);
		var bioArea = $(this).parent().siblings('div.bio');
		
		$(bioArea).slideToggle('slow', function(e) {
			if ($(this).css('display') == 'none') {
				$(text).html("show presenter's bio");
			}
			else {
				$(text).html("hide presenter's bio");
				$(bioArea).css('zoom', '1');
			}
		});
	});
	
});
