$(document).ready(function(){  

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