// effects.js

$(document).ready(function(){

  $('#evenements a').click(function(){
    $(this).blur();
    scrollTo(this.hash,300);
    return false;
  });

});



function scrollTo(id,speed){
  if(typeof speed == 'undefined'){
    speed=1000;
  }
  $('html,body').animate({ scrollTop: $(id).offset().top }, speed);
}
