$(document).ready(function(){
  $('.primary-nav a, .default-list a').click(function(){
    var TARGET_REG = /^#[A-Za-z0-9\-_]+$/;
    
    $el = $(this).attr('href');
    if( TARGET_REG.test($el) ){
      $new_position = $($el).offset().top;

      $( 'html, body' ).animate( { scrollTop: $new_position + 'px' }, 'slow' );

      return false;
    }
    
  });
});
