// JavaScript Document

$(document).ready(function(){


				$('.scrollPage').click(function() {
				   var elementClicked = $(this).attr("href");
				   var destination = $(elementClicked).offset().top;
				   $("html:not(:animated),body:not(:animated)").animate({ scrollTop: destination-20}, 500 );
				   return false;
				});
				$('.scrollPage2').click(function() {
				   var elementClicked = $(this).attr("href");
				   var destination = $(elementClicked).offset().top;
				   $("html:not(:animated),body:not(:animated)").animate({ scrollTop: destination-20}, 500 );
				   return false;
				});
				
					$('.scrollPage3').click(function() {
				   var elementClicked = $(this).attr("href");
				   var destination = $(elementClicked).offset().top;
				   $("html:not(:animated),body:not(:animated)").animate({ scrollTop: destination-35}, 500 );
				   return false;
				});

});
