// JavaScript Document

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