$(document).ready(function(){
  $('#team').toggle(
   function(){
     $('#team').val('hide');
     $('#mng').fadeIn('slow');
     },
   function(){
     $('#team').val('Management team');
     $('#mng').fadeOut('slow');
     }
   ); //end table toggle
}); //end ready 