$(document).ready(function(){
	$('a[href^=#]').click(function(){
		cible=$(this).attr('href');
		if($(cible)){
			hauteur=$(cible).offset().top;
		}
		$('html,body').animate({scrollTop:hauteur},1000);
		return false;
	});
});
