﻿$(document).ready(function() {
    //becマークの移動
    $(".mark").click(function() {
        $(this).animate({ "marginRight": "415px" }, 0);
        $(this).animate({ "marginRight": "0px" }, 1000);
    });

    //プルダウンメニュー
    $(".menu li").hover(function() {
        $(this).children("ul").css("display", "block");
    }, function(){
        $(this).children("ul").css("display", "none");
    });
});

function setactive(id) {
    $(document).ready(function() {
        $(id + " > a").addClass("active");
    });
}