$(document).ready(function(){		
	$('.menu_motivi li .menu_motivi_contenuto').not('.attivo').hover(
		function(){
			$(this).stop().animate({
				height: 159+"px"
			}, 400, function(){
				//
			})
		}, function(){
			$(this).stop().animate({
				height: 40+"px"
			}, 400, function(){
				//
			})
		}
	)
});

