// menu_sideNavi

var path = document.location.pathname;

var menu = {
  accessory: [
        { text: "マイク端子用", link:"/product/audio/accessory/mic/index.html" },
        { text: "トランスクリプション用", link:"/product/audio/accessory/transcription/index.html" },
        { text: "バッテリー類", link:"/product/audio/accessory/battery/index.html" },
        { text: "アンテナ", link:"/product/audio/accessory/antenna/an1/index.html" },
        { text: "その他", link:"/product/audio/accessory/others/index.html" }
           ]
};

var old_products = [
	"/product/audio/accessory/mic/me50s/index.html",
	"/product/audio/accessory/mic/me12/index.html",
	"/product/audio/accessory/transcription/as2300/index.html"
];

function write_menu(category){
  for(var i=0,cur_menu; cur_menu = menu[category][i]; i++){
    var _path = cur_menu["link"].split("index.html")[0]
    var _current = path.match(_path) ? ' class="current"' : '';
    document.write('<li'+_current+'><a href="'+cur_menu["link"]+'">'+cur_menu["text"]+'</a></li>');
  }
};

function write_old_products(){
  for(var i=0,cur_old; cur_old = old_products[i]; i++){
    if( path.match(cur_old.split("index.html")[0]) ){
      document.write('<li><span><a href="/product/audio/record/index2.html"><img src="/product/images/localNav_record_h.gif" alt="今までに発表した製品" width="154" height="25" /></a></span></li>');
      return;
    }
  }
  document.write('<li><span><a href="/product/audio/record/index2.html"><img src="/product/images/localNav_record_o.gif" alt="今までに発表した製品" width="154" height="25" /></a></span></li>');
};

/*------------------------------------------------------------------*/

document.write('<h2><a href="/product/audio/index.html"><img src="/product/images/localNav_audio.gif" alt="オーディオ" width="156" height="29" /></a></h2>');
document.write('<ul id="localNav">');
document.write('<li><span><a href="/product/audio/index.html#ancVoiceTrek"><img src="/product/images/localNav_voicetrek_o.gif" alt="ICレコーダー VoiceTrek" width="154" height="31" /></a></span></li>');
document.write('<li><span><a href="/product/audio/selector/index.html"><img height="25" width="154" alt="ICレコーダーセレクター" src="/product/images/localNav_icrecorder_o.gif" /></a></span></li>');
document.write('<li><span><a href="/product/audio/index.html#ancLinearpcm"><img src="/product/images/localNav_linearpcm_o.gif" alt="リニアPCMレコーダー" width="154" height="31" /></a></span></li>');
document.write('<li><span><a href="/product/audio/index.html#ancRadio"><img src="/product/images/localNav_radioserver_o.gif" alt="ラジオサーバー" width="154" height="31" /></a></span></li>');
document.write('<li><span><a href="/product/audio/accessory/index.html"><img src="/product/images/localNav_accessory_o.gif" alt="アクセサリー" width="154" height="25" /></a></span>');
document.write('<ul>');
write_menu("accessory");
document.write('</ul>');
document.write('</li>');
write_old_products();
document.write('<li><span><a href="/product/price/audio.html" rel="popup"><img src="/product/images/localNav_price_o.gif" alt="価格表／JANコード表" width="154" height="25" /></a></span></li>');
document.write('</ul><!-- /localNav -->');