$("document").ready(function() {

				$('.su').click(function(){

					$('html, body').animate({
						scrollTop: $(".inizio").offset().top
					}, 2000);

				 });
				$('.go-inizio').click(function(){

					$('html, body').animate({
						scrollTop: $(".inizio").offset().top
					}, 1000);

				 });

				$('.go-trama').click(function(){

					$('html, body').animate({
						scrollTop: $(".trama").offset().top 
					}, 1000);

				 });
				$('.go-note').click(function(){

					$('html, body').animate({
						scrollTop: $(".note").offset().top
					}, 1000);

				 });
				$('.go-personaggi').click(function(){

					$('html, body').animate({
						scrollTop: $(".personaggi").offset().top
					}, 1000);

				 });
				$('.go-regista').click(function(){

					$('html, body').animate({
						scrollTop: $(".regista").offset().top
					}, 1000);

				 });
				$('.go-staff').click(function(){

					$('html, body').animate({
						scrollTop: $(".staff").offset().top
					}, 1000);

				 });
				$('.go-foto').click(function(){

					$('html, body').animate({
						scrollTop: $(".foto").offset().top
					}, 1000);

				 });


});

