/* ----------------------------------------------------
	■スクロール
---------------------------------------------------- */
jQuery.easing.quart = function (x, t, b, c, d) {
    return -c * ((t=t/d-1)*t*t*t - 1) + b;
};  

$(function () {
    $('#pagetop').click(function () {
        $('html,body').animate({ scrollTop: 0 }, 700, 'quart');
    });
});


/* ----------------------------------------------------
	■サイトマップ
---------------------------------------------------- */
$(document).ready(function() {
	$('.type6 .entryBox ul li:first-child').addClass('firstchild');
});


