$(function() {		   		   
		   
		// ---------- MENU ORIZZONTALE ----------------------------------
		
		// OPACITY OF BUTTON SET TO 100%
		$(".nav_links a").css("opacity","1.0") ;
		
		// ON MOUSE OVER
		$(".nav_links a").hover(function () {
										  
			// SET OPACITY TO 30%
			$(this).stop().animate({
				opacity: 0.3
			}, "slow");
		},
		
		// ON MOUSE OUT
		function () {
			
			// SET OPACITY BACK TO 100%
			$(this).stop().animate({
				opacity: 1.0
			}, "slow");
		});
		
		
		// ---------- BANDIERE ----------------------------------
		
		// OPACITY OF BUTTON SET TO 100%
		$(".nav_flags li a img").css("opacity","1.0") ;
		
		// ON MOUSE OVER
		$(".nav_flags li a img").hover(function () {
										  
			// SET OPACITY TO 30%
			$(this).stop().animate({
				opacity: 0.3
			}, "slow");
		},
		
		// ON MOUSE OUT
		function () {
			
			// SET OPACITY BACK TO 100%
			$(this).stop().animate({
				opacity: 1.0
			}, "slow");
		});
		
		
		// ---------- PULSANTE PRENOTA ----------------------------------
		
		// OPACITY OF BUTTON SET TO 100%
		$("#pulsante_prenota").css("opacity","1.0") ;
		
		// ON MOUSE OVER
		$("#pulsante_prenota").hover(function () {
										  
			// SET OPACITY TO 60%
			$(this).stop().animate({
				opacity: 0.6
			}, "slow");
		},
		
		// ON MOUSE OUT
		function () {
			
			// SET OPACITY BACK TO 100%
			$(this).stop().animate({
				opacity: 1.0
			}, "slow");
		});
				
						
		
		$("#accordion").tabs("#accordion div.pane", {tabs: 'h2', effect: 'slide', initialIndex: null});
		
		// ---------- SIDEBAR LATO SINISTRO ----------------------------------
		$("img.a").hover(
	
		function() {
		$(this).stop().animate({
			"opacity": "0"
		}, "slow");
		},
		
		function() {
		$(this).stop().animate({"opacity": "1"}, "slow");
		});
		
				
	});

	
