
/*  animazione home page */

$(function(){
    $('#primoPiano img:gt(0)').hide();
    setInterval(function(){
      $('#primoPiano :first-child').fadeOut()
         .next('img').fadeIn()
         .end().appendTo('#primoPiano');}, 
      9000);
});



/*  thumbs + esp */

$(function() {
	$("a[rel='gallery']").colorbox();

});
