//init
jQuery(document).ready(function(){
  jQuery('a.toplink').click(function(){
    jQuery('html').animate({scrollTop:0}, 'slow');
  });
 });
