//ページスクロール時のバウンドアクション//
jQuery.easing.quart = function (x, t, b, c, d) {
    return -c * ((t=t/d-1)*t*t*t - 1) + b;
}
//ページ上部に戻るアクション//
$(function () {
    $('.scroll').click(function () {
        $('html,body').animate({ scrollTop: 0 }, 300, 'quart');
    });
});

//ポップアップ設定
$(document).ready(function(){
	$("a[rel^='prettyPhoto']").prettyPhoto({theme:'light_rounded'});
});
