


/* 返回顶部jq */
function b(){
	h = $(window).height();
	t = $(document).scrollTop();
	if(t > h){
		$('#scrollUp').show();
	}
}
$(document).ready(function(e) {
	b();
	$('#scrollUp').click(function(){
		$(document).scrollTop(0);	
	})
});

$(window).scroll(function(e){
	b();		
})
