// JavaScript Document
//隐藏 #back-top 先
jQuery(document).ready(function() {
	jQuery("#back-top").hide();
});

// 滚动条距顶100px显示 #back-top
jQuery(function () {
	jQuery(window).scroll(function () {
		var st = jQuery(document).scrollTop(), winh = jQuery(window).height();
		if (jQuery(this).scrollTop() > 0) {
			jQuery("#back-top").fadeIn();
			if (!window.XMLHttpRequest) {
				jQuery("#back-top").css("top", st + winh - 166);    
			}
		} else {
			jQuery("#back-top").fadeOut();
		}
	});
	// 点击事件 回到顶部
	jQuery("#back-top a").click(function () {
		jQuery("body, html").animate({
			scrollTop: 0
		}, 600);
		return false;
	});
});
