﻿// menu_sideNavi

var path = document.location.pathname;

var menu = {
  digitalCamera: [ 
		{ text: "&#956;TOUGH-8000工一郎", link:"/product/construction/kouichiro_mjutough8000/index.html" },
		{ text: "&#956;1030SW工一郎", link:"/product/construction/kouichiro_mju1030sw/index.html" }
      ],
  software: [
		{ text: "蔵衛門御用達10", link:"/product/construction/goyoutashi10/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() {
    function currentMenuCheck() {
        var path = window.location.pathname.replace("index.html", "");
        path = path.replace(/\/product\/construction\/special\/.*/, "/product/construction/special/");
        $("a", "#localNav").each(function(){
            var _href = $(this).attr("href").replace("index.html", "");
            if (path == _href) {
                $("img", this).unbind().each(function(){
                    this.src = this.src.replace(/_o(\.[a-z]{3})$/, "_h$1");
                });
            }
        });
    }
    $("#localNav").each(function(){
        currentMenuCheck();
    });
});

/*------------------------------------------------------------------*/

document.write('<h2><a href="/product/construction/index.html"><img src="/product/images/localNav_construction.gif" alt="工事写真用" width="156" height="29" /></a></h2>');
document.write('<ul id="localNav">');
document.write('<li><span><a href="/product/construction/index.html#ancConstruction"><img src="/product/images/localNav_construction-digital-camera_o.gif" alt="工事写真用デジタルカメラ" width="154" height="25" /></a></span>');
document.write('<ul>');
write_menu("digitalCamera");
document.write('</ul>');
document.write('</li>');
document.write('<li><span><a href="/product/construction/index.html#ancConstruction"><img src="/product/images/localNav_construction-software_o.gif" alt="工事写真管理ソフトウェア" width="154" height="25" /></a></span>');
document.write('<ul>');
write_menu("software");
document.write('</ul>');
document.write('</li>');
document.write('<li><span><a href="/product/construction/special/index.html"><img src="/product/images/localNav_construction-special_o.gif" alt="工事写真の現場" width="154" height="25" /></a></span></li>');
document.write('<li><span><a href="/product/construction/record/index.html"><img src="/product/images/localNav_record_o.gif" alt="今までに発表した製品" width="154" height="25" /></a></span></li>');
document.write('<li><span><a href="/product/price/construction.html" rel="popup"><img src="/product/images/localNav_price_o.gif" alt="価格表／JANコード表" width="154" height="25" /></a></span></li>');
document.write('</ul><!-- /localNav -->');