jQuery.easing.quart = function (x, t, b, c, d) {
return -c * ((t=t/d-1)*t*t*t - 1) + b;
};
jQuery(function($){
var topBtn = $('#return_top');
topBtn.hide();
$(window).scroll(function () {
if ($(this).scrollTop() > 100) {
topBtn.fadeIn();
} else {
topBtn.fadeOut();
}
});
//�X�N���[�����ăg�b�v
topBtn.click(function () {
$('body,html').animate({
scrollTop: 0
}, 500, 'quart');
return false;
});
});