/**
 * scroll to top on #gototop
 */  
jQuery(document).ready(function(){
  jQuery("#gototop").click(function () {
    jQuery.scrollTo("body", 1000);
    return false;
  })
});

