$(document).ready(function() {
	
	$('a.expand').each(function() {
		$(this).parent().next().hide();
	});	
	
	$('a.expand').click(function(event) {
		$(this).parent().next().toggle();
		if ($(this).parent().next().css('display') == 'none')
			$(this).text('Read Entire Bio');
		else
			$(this).text('Hide Full Bio');
		event.preventDefault();
	});
	
	$('a.event-showhide').each(function() {
		$(this).parent().next().hide();
	});
	
	$('a.event-showhide').click(function(event) {
		$(this).parent().next().toggle();
		if ($(this).parent().next().css('display') == 'none')
			$(this).text('read more');
		else
			$(this).text('hide full text');
		event.preventDefault();
	});
	
});