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

});
