$(document).ready(function(){

	//When mouse rolls over
	$("li.item").mouseover(function(){
		$("p.top", this).stop().animate({height:'60px'},{queue:false, duration:600, easing: 'easeOutCirc'})
	});
	
	//When mouse is removed
	$("li.item").mouseout(function(){
		$("p.top", this).stop().animate({height:'0px'},{queue:false, duration:600, easing: 'easeOutCirc'})
	});
	
});
