  $(document).ready(function() {
    $('.read_more_start')
	  .nextUntil('.read_more_end')
	  .hide();
	$('.read_more_end')
	  .after('<p><a id="bio_info_link">More Info...</a></p>');
	$('#bio_info_link')
	  .toggle(
	    function() {
	      $(this).text('Less Info...');
		  $('.read_more_start').nextUntil('.read_more_end').show();
		},
		function() {
		  $(this).text('More Info...');
		  $('.read_more_start').nextUntil('.read_more_end').hide();
		  $.scrollTo('#content h2:first');
		}
	  );
  });