/*
 * Animated Scroll to Top
 * http://webdesignerwall.com/tutorials/animated-scroll-to-top
 */

$(document).ready(function() {
//まずトップに戻るを消しておきます。
$("#totop").hide();

//スクロールされたら
$(window).scroll(function () {
//100pxいったら
if ($(this).scrollTop() > 300) {
//トップに戻るをフェードイン
$('#totop').fadeIn();
//100pxいかなかったら
} else {
//隠す
$('#totop').fadeOut();
}
});

//トップに戻るをクリックしたら
$('#back-top a').click(function () {
//スムーズに上に戻る
$('body,html').animate({
scrollTop: 0
}, 800);
return false;
});
});

