$(document).ready(function(){	// hide #back-top first	$("#recent-voice").hide();	// fade in #back-top	$(function () {		$(window).scroll(function () {			if ($(this).scrollTop() > 560) {				$('#recent-voice').fadeIn();			} else {				$('#recent-voice').fadeOut();			}		});		// scroll body to 0px on click		$('#recent-voice a').click(function () {			$('body,html').animate({				scrollTop: 0			}, 800);			return false;		});	});	$('#update-pop').fadeIn(1,"linear");});
