jQuery(document).ready(function() {		
	// Contatti & Fancybox
		jQuery(".fancybox").fancybox({
			'padding'			: 20,
			'hideOnContentClick': false,
			'overlayShow'		: true,
			'titleShow'			: false,
			'centerOnScroll'	: true
		});
		jQuery("a#mappa").fancybox({
			'width'				: 940,
			'height'			: 600,
			'hideOnContentClick': false,
			'overlayShow'		: true,
			'titleShow'			: false,
			'centerOnScroll'	: true,
			'autoScale'			: false
		});
		jQuery("a#autofancy-btn").fancybox({
			'hideOnContentClick': false,
			'overlayShow'		: true,
			'titleShow'			: false,
			'centerOnScroll'	: false,
			'autoScale'			: false
		}).trigger('click')
                ;
                
		//Effetto fade rigato 
		jQuery(function() {  
		jQuery(".post-thumbnail").css("opacity","0.7");  
		jQuery(".post-thumbnail").hover(function () {  
		jQuery(this).stop().animate({opacity: 1});
		},  
		function () {   
		jQuery(this).stop().animate({opacity: 0.7});
		});  
		});

			
	//Effetto qr code
		jQuery("#qrcode").hover(function () {  
			jQuery(this).stop().animate({width: "239px", height: "239px"}, "slow");  
		},  
		function () {   
			jQuery(this).stop().animate({width: "97px", height: "91px"}, "slow");  
		});
		
	
	//Effetto logo
		jQuery("#logo").hover(function () {  
			jQuery(this).stop().animate({marginLeft: "8px", opacity: "0.7"}, "slow");  
		},  
		function () {   
			jQuery(this).stop().animate({opacity: "1", marginLeft: "0"}, "fast");  
		});

	//Contatti
		jQuery('#pulsante-contatti, .linkcontatti').click(function () {
		jQuery('#box-contatti,#header,.keytext').slideToggle('medium');
		jQuery('#pulsante-contatti').toggleClass('aperto');
		});


});

