$(function(){
	
	 $('a[href^="#"]').click(function(){
	 	var cible=$(this).attr('href');	 
	 	 		
		var hauteur=$(cible).offset().top;
	//alert($(cible).offset().top);
	 $("html,body").animate({scrollTop:hauteur},1500);	
	 	return false;
	 	
	 });
	 
	 
	 
});
