  $(document).ready(function(){
    $(".bio").hide();
    $(".story").hide();
    
    $(".bioLink").click(function() {
    
    	$(this).siblings(".bio").toggle(200);
    	return false;
    
    });

    $(".storyLink").click(function() {
    
    	$(this).siblings(".story").toggle(200);
    	return false;
    
    });    
  });
