/********************
 *上にスクロールさせる
*********************/
$(function () {

    if (! $.browser.safari && ! $.browser.opera) {
        $('.link_to_top').click(function () {
            $(this).blur();
            $('html,body').animate({ scrollTop: 0 }, 800);
            return false;
        });
    }
});

// iPhoneまたは、Androidの場合は振り分けを判断
/*if ((navigator.userAgent.indexOf('iPhone') > 0 && navigator.userAgent.indexOf('iPad') == -1) || navigator.userAgent.indexOf('iPod') > 0 || navigator.userAgent.indexOf('Android') > 0) {
        location.href = 'http://www.s-arcana.co.jp/mobile/';
}*/



