function tabMenu(){
    var menu_list = [
        {'name'    : '#menu_top',
            'regex'   : /^\/$|^\/index.shtml$/,
            'on_img'  : "/img_template/head_menu_01_on.jpg",
            'off_img' : "/img_template/head_menu_01_off.jpg"},
        {'name'    : '#menu_headline',
            'regex'   : /^\/news\/kennai\//,
         'on_img'  : "/img_template/head_menu_02_on.jpg",
         'off_img' : "/img_template/head_menu_02_off.jpg"},
        {'name'    : '#menu_zenkoku',
            'regex'   : /^\/news\/zenkoku\//,
         'on_img'  : "/img_template/head_menu_03_on.jpg",
         'off_img' : "/img_template/head_menu_03_off.jpg"},
        {'name'    : '#menu_sports',
            'regex'   : /^\/news\/sports\//,
         'on_img'  : "/img_template/head_menu_04_on.jpg",
         'off_img' : "/img_template/head_menu_04_off.jpg"},
        {'name'    : '#menu_gourmet',
            'regex'   : /^\/hot\/gourmet\.shtml/,
            'on_img'  : "/img_template/head_menu_05_on.jpg",
            'off_img' : "/img_template/head_menu_05_off.jpg"},
        {'name'    : '#menu_outing',
            'regex'   : /^\/hot\/outing\.shtml/,
            'on_img'  : "/img_template/head_menu_06_on.jpg",
            'off_img' : "/img_template/head_menu_06_off.jpg"},
        {'name'    : '#menu_topic',
            'regex'   : /^\/hot\/topic\.shtml/,
            'on_img'  : "/img_template/head_menu_07_on.jpg",
            'off_img' : "/img_template/head_menu_07_off.jpg"},
        {'name'    : '#menu_entame',
            'regex'   : /^\/tokusyu\/entertainment\//,
            'on_img'  : "/img_template/head_menu_08_on.jpg",
            'off_img' : "/img_template/head_menu_08_off.jpg"}
    ];

    $.each(menu_list,function(){
        if (location.pathname.match(this.regex)){
            $(this.name).attr("src",this.on_img);
        }else{
            $(this.name).attr("src",this.off_img);
        }
    });

    var hidden_hot = $("#hidden_hot").text();
    if (hidden_hot){
        switch(hidden_hot){
          case "1":
            $('#menu_gourmet').attr("src", "/img_template/head_menu_05_on.jpg");
            break;
          case "2":
            $('#menu_outing').attr("src", "/img_template/head_menu_06_on.jpg");
            break;
          case "3":
            $('#menu_topic').attr("src", "/img_template/head_menu_07_on.jpg");
            break;
          default:
        }
    }
}

