$(document).ready(function () {
  $(".navigation-warner-anchor a").click(function(e){
    var $anchor = $(this);
    $('html, body').stop().animate({
      scrollTop: $($anchor.attr('href')).offset().top -110
    }, 500);
    e.preventDefault(); //this is the important line.
  });
});