//Code proposé à l'adresse http://www.grafikart.fr/tutoriels/scrolling-anime-44

$(document).ready(function(){
	$('a[href^=#]').click(function(){
		cible=$(this).attr('href');
		if($(cible).length>=1){
			hauteur=$(cible).offset().top;
		}
		else{
			hauteur=$("a[name="+cible.substr(1,cible.length-1)+"]").offset().top;
		}
		$('html,body').animate({scrollTop:hauteur},1800,'easeOutQuint');
		return false;
	});
});	
