    jQuery(function(){
      // Scroll to Top     
      jQuery.fn.scrollToTop=function(){
      
        jQuery(this).removeAttr("href");
                      
        jQuery(this).click(function(){ // Klick des ToTop-Links
          jQuery("html, body").animate({scrollTop:0},"slow")
        })        
      }

      jQuery(document).ready(function(){      
        jQuery(function() {
          jQuery("#toTop").scrollToTop(); // Zuweisen von scrollToTop          
        });                      
      });
            
    });      