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