jQuery(document).ready(function($){ 
$(function() {
	$("#toTop").hide().removeAttr("href");
	$("#toTop").hide();
	if($(window).scrollTop()!="0"){
		$("#toTop").fadeIn("slow");
	};
	var scrollDiv=$("#toTop");
	
	$(window).scroll(function(){
		if($(window).scrollTop()=="0"){
			$(scrollDiv).fadeOut("slow")}
		else {
			$(scrollDiv).fadeIn("slow")
		}
	});
	$("#toTop").click(function(){
		jQuery("html, body").animate({scrollTop:0},"slow")
	});	
});	

});

