

$(document).ready(function(){


		//tooltip descriz. articolo
	   $(".articolo").mouseenter(function(event){
			$(this).children('.desc').addClass("espanso");
	   });
	   $(".articolo").mouseleave(function(event){
			$(this).children('.desc').removeClass("espanso");
	   });


});

