$(document).ready(function() {
	
	$("#recensioni").fancybox({
		'width'				: 800,
		'height'			: 595,
        'transitionIn'		: 'none',
		'hideOnContentClick': false,
		'hideOnOverlayClick': true,
		'autoDimensions'	: false,
		'transitionOut'		: 'none',
		'type'				: 'iframe',
		'showCloseButton'	: false
	});
	
	$('#back').hide();
	$('#back').load(function() {
        $('#back').fadeIn(1500);
    });
	// $('#back').hide().fadeIn(1500);
	$('#titolo').hide().fadeIn(1500);
	$('#logo').hide().fadeIn(1500);
	$('#indirizzo').hide().fadeIn(1500);
	$('.logo_home').hide().fadeIn(1500);
	$('#logo_enoteca').hide().fadeIn(1500);
	$('#content P').hide().fadeIn(1500);
	
	$('#foto a').click(function() {
		var name = $(this).attr("name");
		$('#back').fadeTo('fast', 0.1);
		$('#back').attr('src', 'gallery/' + name + '.jpg').load(function() {
			$('#back').hide();  
		    $('#back').fadeTo(3000, 1);
		});
		$(this).attr("name");
		$('a[name*="img_ristorante_leggendadeifrati"]').removeClass('active');
		$(this).addClass('active');
	});
	
	$(".logo_home").hover(
		function () {
			$(this).fadeTo("fast", 0.6);
	  	}, 
	  	function () {
			$(this).fadeTo("fast", 1);
	  	}
	);
	
	$(".link_menu").hover(
		function () {
			$(this).fadeTo("fast", 0.4);
	  	}, 
	  	function () {
			$(this).fadeTo("fast", 0.6);
	  	}
	);
	
	$(".link_dove_siamo").hover(
		function () {
			$(this).fadeTo("fast", 0.5);
	  	}, 
	  	function () {
			$(this).fadeTo("fast", 1);
	  	}
	);
		
});
