// JavaScript Document

$(function () {
  $('#go_top').click(function () {
    $('html,body').animate({ scrollTop: 0 }, 'slow', 'easeOutCirc');
  });

});

