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