$(document).ready(function() {
						   
	$('#top a.ancre').click(function() {
		var path = $(this).attr("href");
		var top = $(path).offset().top - 68;
		$('html, body').animate({scrollTop:top}, 'slow');
        return false;
	});
	
});
