$(document).ready(function() {
	/* FIDELITY CARD */
	$("#fidelity_card").fancybox({
		'width'				: 800,
		'height'			: 595,
        'transitionIn'		: 'none',
		'hideOnContentClick': false,
		'hideOnOverlayClick': false,
		'autoDimensions'	: false,
		'transitionOut'		: 'none',
		'type'				: 'iframe',
		'showCloseButton'	: true
	});
	/* BOOKING */
	$("#prenota").fancybox({
		'width'				: 800,
		'height'			: 600,
        'transitionIn'		: 'none',
		'hideOnContentClick': false,
		'hideOnOverlayClick': false,
		'autoDimensions'	: false,
		'transitionOut'		: 'none',
		'type'				: 'iframe',
		'showCloseButton'	: true
	});
	/* PHOTO GALLERY */
	$("a[rel=gallery]").fancybox({
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'titlePosition' 	: 'over',
		'showCloseButton' 	: false,
		'titleFormat'       : function(title, currentArray, currentIndex, currentOpts) {
		    return '<span id="fancybox-title-over">Image ' +  (currentIndex + 1) + ' / ' + currentArray.length + ' ' + title + '</span>';
		}
	});
	/* GOOGLE MAPS */
	$("a#dove_siamo").fancybox({
		'width'				: 818,
		'height'			: 615,
        'transitionIn'		: 'none',
		'hideOnContentClick': false,
		'hideOnOverlayClick': true,
		'autoDimensions'	: false,
		'transitionOut'		: 'none',
		'type'				: 'iframe',
		'showCloseButton'	: false
	});
	// IMMAGINE EVENTO
	$("a#flyer_evento").fancybox({
		'titleShow'     : false,
		'showCloseButton'	: false,
		'hideOnContentClick'	: true
	});
	/* BOX CARNI */
	$("a#box_carni").fancybox({
		'width'				: 800,
		'height'			: 500,
        'transitionIn'		: 'none',
		'hideOnContentClick': false,
		'hideOnOverlayClick': true,
		'autoDimensions'	: false,
		'transitionOut'		: 'none',
		'type'				: 'iframe',
		'showCloseButton'	: false
	});
	/* EVENTI */
	$("a#eventi").fancybox({
		'width'				: 800,
		'height'			: 615,
        'transitionIn'		: 'none',
		'hideOnContentClick': false,
		'hideOnOverlayClick': true,
		'autoDimensions'	: false,
		'transitionOut'		: 'none',
		'type'				: 'iframe',
		'showCloseButton'	: false
	});
	/* ANIMAZIONI */
	$("a#fidelity_card, a#prenota, a#prenota_pizzeria").hover(
		function() {
			$(this).fadeTo("fast", 0.7);
		},
		function() {
			$(this).fadeTo("fast", 1);
		}
	);
	$("a#flyer_evento, a#box_carni, a#prenota_ristorante, a#eventi, a#photo_gallery").hover(
		function() {
			$(this).fadeTo("fast", 0.8);
		},
		function() {
			$(this).fadeTo("fast", 1);
		}
	);
	/* BOX DOVE SIAMO */
	$("a#dove_siamo").hover(
		function() {
			$("#box_dovesiamo").fadeTo("fast", 0.8);
		},
		function() {
			$("#box_dovesiamo").fadeTo("fast", 1);
		}
	);
});
