$(function(){
    $('#myconfig').click(function(){ // ▼をクリックでトグル
        $('#myconfig_menu').toggle('fast');
        return false;
    });
    $('*').not('#myconfig, a').click(function(){ // ▼以外をクリックで閉じる
        $('#myconfig_menu').hide('fast');
    });
    $('#menu_close').click(function(){ // メニューの「閉じる」をクリックで閉じる
        $('#myconfig_menu').hide('fast');
    });

    $('#myconfig_menu a').hover(function(){
        $(this).css({color: '#fff', backgroundColor: '#ff9421'});
    },function(){
        $(this).css({color: '#307cf8', backgroundColor: '#fff'});
    });
});
