$(
  function(){
	  $.fn.scrollToTop = function(){
		  					$(this).hide().removeAttr("href");
							$(this).fadeIn("slow");
							
							var scrollDiv=$(this);
							$(window).scroll();					 
							$(this).click( function(){
											   $("html, body").animate({scrollTop:200},"slow");
										   });
						}
  }
);