
$(document).ready(function() {
		$('.scroller').click(function() {
		   var clicked = $(this).attr("href");
		   var destination = $(clicked).offset().top;
		   $("html:not(:animated),body:not(:animated)").animate({ scrollTop: destination-20}, 500 );
		   return false;
		});
	});