$(document).ready(function() 
 {
 	//$('.moreinfo').show();
 	   
   $('.showhideForm').click(function () {
      if ($('.shareform').is(':hidden'))
      {
      	$('.shareform').slideDown();
      	$('.showhideForm').html('[Hide the Alumni Testimonial form]');
      } 
      else 
      {
      	$('.shareform').slideUp();
      	$('.showhideForm').html('Pass the Torch, and Share With Us...');
      }
    });
    
});

