$(document).ready(function(){ 
	$('ul#sezioni li:even').addClass('left');
	$('ul#sezioni li:odd').addClass('right');
	$('ul#sezioni li img').css("opacity", 0.8);		   
	$('ul#gallery li img').css("opacity", 0.8);   
    $('ul#sezioni li').hover(  
		function(){ 
		 	$(this).find('p').animate({
				height: '28px'
		  }, 150);
			$(this).find('img').animate({
				opacity: 1
		  }, 150);
		},  
   		function(){ 
		 	$(this).find('p').animate({
				height: '41px'
		  }, 150);
			$(this).find('img').animate({
				opacity: 0.8
		  }, 150);
		}  
    )  
	$('ul#gallery li').hover(  
		function(){ 
		 	$(this).find('p').animate({
				height: '25px'
		  }, 150);
			$(this).find('img').animate({
				opacity: 1
		  }, 150);
		},  
   		function(){ 
		 	$(this).find('p').animate({
				height: '48px'
		  }, 150);
			$(this).find('img').animate({
				opacity: 0.8
		  }, 150);
		}  
    )  
	
	$('ul#gallery li').each(function(i){
		if (i % 3 == 2) {
			$(this).addClass("noMrg");
		}
	});
	$('ul#gallery2 li').each(function(i){
		if (i % 3 == 2) {
			$(this).addClass("noMrg");
		}
	});
}); 


