﻿$(document).ready(function(){
  		
  		
  		/* ANIMAZIONE DI ENTRATA - inizio */
		  $('#logo').delay(1000).fadeIn(2500, function() {
		  	
		  	$('#colorbar').delay(800).fadeIn('slow');
			$('#language').delay(2500).fadeIn('slow');
  			$('#menu').delay(800).animate({
  			
  				height: 'toggle',
  				opacity: 'toggle'
  				  			
  			}, 2000, 'easeOutBounce', function() {
  	
  					
  					$('#testo').animate({
  						
  						height: 'toggle',
  						opacity: 'toggle'

  					
  					}, 500, function() {
  						
  						$('.menu').fadeTo('slow', 0.5);
  						
  					});
  					
  					$('#azienda').hover(
  					
  					function() {
  					
  						$(this).fadeTo('fast', 0.66);
						$('.azienda').fadeTo('fast', 1);						

					},
					function() {
					
						$('.azienda').fadeTo('fast', 0.5);
						$(this).fadeTo('fast', 1);

					});		
					
					$('#prodotti').hover(
  					
  					function() {
  					
  						$(this).fadeTo('fast', 0.66);
						$('.prodotti').fadeTo('fast', 1);						

					},
					function() {
					
						$('.prodotti').fadeTo('fast', 0.5);
						$(this).fadeTo('fast', 1);

					});	
					
					$('#dove').hover(
  					
  					function() {
  					
  						$(this).fadeTo('fast', 0.66);
						$('.dove').fadeTo('fast', 1);					

					},
					function() {
					
						$('.dove').fadeTo('fast', 0.5);
						$(this).fadeTo('fast', 1);

					});	
					
					$('#contatti').hover(
  					
  					function() {
  					
  						$(this).fadeTo('fast', 0.66);
						$('.contatti').fadeTo('fast', 1);						

					},
					function() {
					
						$('.contatti').fadeTo('fast', 0.5);
						$(this).fadeTo('fast', 1);

					});	
					
					$('#shop').hover(
  					
  					function() {
  					
  						$(this).fadeTo('fast', 0.66);
						$('.shop').fadeTo('fast', 1);					

					},
					function() {
					
						$('.shop').fadeTo('fast', 0.5);
						$(this).fadeTo('fast', 1);

					});		
						
			});
		  });
		  /* ANIMAZIONE DI ENTRATA - fine */
		  
		  
		  /* ANIMAZIONE DI USCITA - inizio */
		  $("a").click(function(event){
   			 
   			 	event.preventDefault();
   			 	
				$('#language').fadeOut('fast', function() {
					
   			 		$('#menu, #testo').slideToggle(1000, function() {
   			 			
   			 			$('#colorbar').fadeOut('fast', function() {
   			 			
   			 				$('#logo').fadeOut(1500, function() {
	
				 				location.href = event.currentTarget;
				 			
							});
				 		});
				 	});
			 	});
   			 	 
   		  });
		  /* ANIMAZIONE DI USCITA - fine */
		 
  		});		
