// JavaScript Document

 $(document).ready(function(){
   
   $(".menu_item").hover(function(){
	   $(this).css("background-image","url(../img/menu/gru_over.png)");
   }, function(){
	   $(this).css("background-image","url(../img/menu/gru.png)");
   });
   
   $(".menu_pack").hover(function(){
	   $(this).css("background-image","url(../img/menu/item_over.png)");
	   $(this).stop().animate({backgroundPosition: '0px -50px'});
	   $(this, ".menu_pack p").stop().animate({top: '-50px'});
   }, function(){
	   $(this).css("background-image","url(../img/menu/item.png)");
	   $(this).stop().animate({backgroundPosition: '0px 0px'});
	   $(this, ".menu_pack p").stop().animate({top: '0px'});
   });
   
   $('.slideshow').cycle({fx: 'fade' });
   
   $('#slider').tinycarousel({ display: 5 });
   
   $("a.carousel").attr('rel', 'gallery').fancybox();
   $("a.dati").fancybox();
 });
