// JavaScript Document

$(document).ready(function() {  

// guardaci fullcreen!

		$('#dialog').dialog({
			autoOpen: true,
			draggable:false,
			width: 400,
			resizable:false,
			modal:false,
			hide: "explode"
		});
		
// scrollo tour
		$('.container .content #Home .screen').scrollTo('.dateFuture',5000);

// effetto slide dei vari contenuti

		$('.header .centratore ul li p').click(function(){			
			$('body').scrollTo($(this).attr('class'),4000,{
			easing:'easeOutElastic'
			})		
		});		
		
// effetto hover sulla navigation bar

		$('.header .centratore ul li p').mouseover(function(){
			$(this).animate({				
				backgroundColor:"#000",
				color:"#FFF",
				borderColor:"#FFF"
				},300);
				$(this).animate({				
				backgroundColor:"#007730",
				color:"#FFF",
				borderColor:"#FFF"
				},300);
					$(this).animate({				
				backgroundColor:"#052E6E",
				color:"#FFF",
				borderColor:"#FFF"
				},300);
				$(this).animate({				
				backgroundColor:"#A0000F",
				color:"#FFF",
				borderColor:"#FFF"
				},300);
			});
			
		$('.header .centratore ul li p').mouseout(function(){
				$(this).animate({				
				backgroundColor:"#007730",
				color:"#FFF",
				borderColor:"#FFF"
				},300);
							
			$(this).animate({				
				backgroundColor:"#FFF",
				color:"#000",
				borderColor:"#000"
				},300);
			
				
			});

// HOVER SU "Galleria"

		$('#gotoGalleria').mouseover(function(){
			$(this).animate({
				backgroundColor:'#000',
				color:'#FFF',
			},600);			
			});
		$('#gotoGalleria').mouseout(function(){
			$(this).animate({
				backgroundColor:'#FFF',
				color:'#000'
			},600);
			});
			
// scrollTo quando si clicca su "Galleria"

		$('#gotoGalleria').click(function(){
			$('.bioscreen').scrollTo($('.galleria'),3000,{
				easing:'easeOutBounce',
				axis:'y'
				});
			});
			
// HOVER su "torna su"
		$('.tornasu').mouseover(function(){
			$(this).animate({
				backgroundColor:'#000',
				color:'#FFF',
			},600);			
			});
		$('.tornasu').mouseout(function(){
			$(this).animate({
				backgroundColor:'#FFF',
				color:'#000'
			},600);
			});
			
// scrollTo quando si clicca su "torna su"

		$('.tornasu').click(function(){
			$('.bioscreen').scrollTo((0,0),3000,{
				easing:'easeOutBounce',
				axis:'y'
				});
			});

// APPROACH

	$(".social a img").approach({
    "opacity": "1"
  }, 60); 
			
});  




