/*
 * 共通jsの記述
 */
$(document).ready(function(){
});
var commons={
    /*
     * メニュー開閉
     */
    menu_toggle:function(){
        //開閉状況を確認
        if($('#menu_switch').val() == 'open'){
            $('#menulist').animate({"top": "278px"}, "slow");
            $('#switch').html('about Meplus+&nbsp;&uarr;');
            $('#menu_switch').val('close');
        }else{
            $('#menulist').animate({"top": "45px"}, "slow");
            $('#switch').html('close&nbsp;&darr;');
            $('#menu_switch').val('open');
        }
    }
    /*
     * メニュー存在処理
     */
   ,menu_look:function(){
        //開いて閉じる
        setTimeout(commons.menu_toggle, 1000);
        setTimeout(commons.menu_toggle, 3500);
    }
}
