jQuery(function(){


	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(){      
			
		/////////////////////////////////////////
		// Scroll to top
		/////////////////////////////////////////
		jQuery(".totop").scrollToTop();
		
		
	});
	
});
