$(function(){
		   
	var decalage = 0;
	var ancres = $('.lien_contact, #lien_map a, .top a');
	
	ancres.bind('click',function(e){
		$.scrollTo( this.hash, 1500,  { offset: { top : decalage } } );		
		e.preventDefault();
	});
	
	$('.menu a').bind('click',function(e){
		$.scrollTo( this.hash, 1500,  { offset: { top : decalage } } );
		e.preventDefault();
	});
});
