function checkCommentJump(){
  if(location.hash == "#tocomments"){
    toComments();
  }
}

function toComments(){
  var winScroll = new Fx.Scroll(window, {transition: Fx.Transitions.Quad.easeOut});
  winScroll.toElement('comments');
}

window.addEvent('load', checkCommentJump);
