JS - Scroll anim au click
/************************************************************************************************/
/* SCROLL DES PAGES */
/************************************************************************************************/
$('.scrollTo, .scrollLink').click(function(){
var thisHref = $(this).attr('href');
var cible = $(thisHref);
var toTop = cible.offset().top - headerH;
$('body, html').animate({scrollTop: toTop}, 1000);
return false;
});