$(document).ready(function(){  
  
    //When mouse rolls over  
    $(".tabsOffering").mouseover(function(){  
        $(this).stop().animate({height:'150px'},{queue:false, duration:600, easing: 'easeOutBounce'})  
    });  
  
    //When mouse is removed  
    $(".tabsOffering").mouseout(function(){  
        $(this).stop().animate({height:'41px'},{queue:false, duration:600, easing: 'easeOutBounce'})  
    });  
  
});  
