﻿$(document).ready(function () {
    //becマークの移動
    $('.mark').click(function () {
        $(this).stop().animate({ marginRight: '415px' }, 0).animate({ marginRight: '0px' }, 'slow');
    });

    //プルダウンメニュー
    $('.menu li').hover(function () {
        $(this).children('ul').slideDown('fast');
    }, function () {
        $(this).children('ul').slideUp('fast');
    });

    //ページトップ
    $('#gototop').children('a').removeAttr('href');
    $('#gototop').css('right', '-26px');
    $(window).scroll(function () {
        if ($(this).scrollTop() == 0) {
            $('#gototop').stop().animate({ right: '-26px' }, 'normal');
        }
        else {
            $('#gototop').stop().animate({ right: '0px' }, 'normal');
        }
    });
    $('#gototop').click(function () {
        $('html,body').animate({ scrollTop: 0 }, 'fast');
    });
});

function setactive(id) {
    $(document).ready(function() {
        $(id + ' > a').addClass('active');
    });
}
