$(document).ready(function(){

    //When mouse rolls over
     $("li").mouseover(function(){		
		$(this).stop().animate({height:'240px'},{queue:false, duration:600, easing: 'easeOutBounce'});
	 	 $(this).css({background:'#CCDDDD'});
		 });
	 

    //When mouse is removed
    $("li").mouseout(function(){
        $(this).stop().animate({height:'95px'},{queue:false, duration:600, easing: 'easeOutBounce'});
   		 $(this).css({background:'#EEEEEE'});
		
   });

});

