 $(document).ready(function(){
   $("#consult-button").toggle(function(){
     $("#consult-box").animate({ height: '435px' }, 'slow');
   },function(){
     $("#consult-box").animate({ height: '125px' }, 'slow');
   });
 });

