$(document).ready(function() {
	jQuery(".opengallery").hover(function() {
		jQuery(this).children(".overlay").fadeIn('fast');
    },function(){
		jQuery(this).children(".overlay").fadeOut('fast');
    });
	jQuery("#cards a img").hover(
		function(){this.src = this.src.replace("Off","Hover");},
		function(){this.src = this.src.replace("Hover","Off");}
	);
	$("#anagrafica").fancybox({
		'overlayColor'		: '#000',
		'width'				: 460,
		'height'			: 210,
		'padding'			: 0,
		'centerOnScroll'	: true,
		'transitionIn'		: 'elastic',
		'transitionOut'		: 'elastic',
		'type'				: 'iframe'
	});
	$("#policy").fancybox({
		'overlayColor'		: '#000',
		'width'				: 590,
		'height'			: 400,
		'padding'			: 0,
		'centerOnScroll'	: true,
		'transitionIn'		: 'elastic',
		'transitionOut'		: 'elastic',
		'type'				: 'iframe'
	});
	if($(".popimage")){
		$(".popimage").fancybox({
			'overlayColor'		: '#000',
			'padding'			: 0,
			'centerOnScroll'	: true,
			'transitionIn'		: 'elastic',
			'transitionOut'		: 'elastic',
			'type'				: 'image'
		});
	}
});

