﻿///////////////////////////////////////////////////////////////////////
// Info: 技術情報のアンダーナビゲーションのメニューを表示する。
///////////////////////////////////////////////////////////////////////

// カテゴリー選択の判定
var technology = ' ';
var equipment = ' ';
var product = ' ';
var training = ' ';
var set_style = ' style="color: #888888;" ';

if(document.URL.indexOf("equipment.html") != -1) { equipment = set_style; }
else if(document.URL.indexOf("product") != -1) { product = set_style; }
else if(document.URL.indexOf("training") != -1) { training = set_style; }
else { technology = set_style; }

document.write('<div id="under_navi_box">',
'<a' + technology + 'href="' + URL_D1 + 'index.html">技術情報&nbsp;-Top-</a>&nbsp;|&nbsp;',
'<a' + equipment + 'href="' + URL_D1 + 'equipment.html">設備案内</a>&nbsp;|&nbsp;',
'<a' + product + 'href="' + URL_D1 + 'product.html">製品案内</a>&nbsp;|&nbsp;',
'<a' + training + 'href="' + URL_D1 + 'training.html">人材育成</a>',
'</div>');

