     $(document).ready(function() {
         $(".btn-slide").toggle(
      function() {
          $("#oncoretab").animate({ 'top': '-112px' }, 'slow');
      },
      function() {
          $("#oncoretab").animate({ 'top': '30px' }, 'slow');
      });
     });
