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

