jQuery(function () {  
	$(window).scroll(function () {  
		if ($(this).scrollTop() != 0) {  
			$('.am').fadeIn();  
		} else {  
			$('.am').fadeOut();  
		}  
	});  
	$('.am').click(function () {  
	$('body,html').animate({  
		scrollTop: 0  
	},  
		800);  
	});  
}); 
