﻿///////////////////////////////////////////////////////////////////////
// Info: ５Ｓ活動のアンダーナビゲーションのメニューを表示する。
///////////////////////////////////////////////////////////////////////

// カテゴリー選択の判定
var activity_5s = ' ';
var hakusan_clean = ' ';
var set_style = ' style="color: #888888;" ';

if(document.URL.indexOf("hakusan_clean") != -1) { hakusan_clean = set_style; }
else { activity_5s = set_style; }

document.write('<div id="under_navi_box">',
'<a href="' + URL_D1 + 'index.html">社内行事&nbsp;-目録-</a>&nbsp;|&nbsp;',
'<a' + activity_5s + 'href="' + URL_D2 + 'index.html">５Ｓ活動</a>&nbsp;|&nbsp;',
'<a' + hakusan_clean + 'href="' + URL_D2 + 'hakusan_clean.html">白山市クリーン作戦</a>',
'</div>');

