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