$(document).ready(function() {



$('#Who_link').toggle(function(event) {

          event.preventDefault();

          $('#Who_div').fadeIn('slow');
          $('#Who_link > span').html('[hide]'); },
          
          function(){$('#Who_div').fadeOut('slow');
                             $('#Who_link > span').html('[view more]');
               

});

$('#Nav_link').toggle(function(event) {

          event.preventDefault();

          $('#Nav_div').fadeIn('slow'); 
          $('#Nav_link > span').html('[hide]');},
          
          function(){$('#Nav_div').fadeOut('slow');
                              $('#Nav_link > span').html('[view more]');

});

$('#Author_link').toggle(function(event) {

          event.preventDefault();

          $('#Author_div').fadeIn('slow'); 
          $('#Author_link > span').html('[hide]');},
          
          function(){$('#Author_div').fadeOut('slow');
                              $('#Author_link > span').html('[view more]');

});

          

});