$(function(){
  $("#goToTopLink").click(scrollToTop);
});

function scrollToTop(e)
{
  var $anchor = $(this);
  
  $('html, body').stop().animate({
    scrollTop: 0},
    1100,'easeInOutExpo');
  
  e.preventDefault();
}
