document.write('<table border=0 width=100% cellspacing="0" cellpadding="0">'+
'<tr>'+
'<td>'+
'<table border=0 width=100% cellspacing="0" cellpadding="0">'+
'<tr>'+
'<td bgcolor="#cccccc" height="50">'+
'<a href="../../index.html"><img src="../../img/logo.jpg" border="0"></a>'+
'</td>'+
'</tr>'+
'</table>'+
'</td>'+
'</tr>'+
'</table>'+
'<table width="760" border="0" cellspacing="0" cellpadding="0">'+
'<tr>'+
'<td>'+
'<table border="0" width=100% cellspacing="0" cellpadding="0">'+
'<tr>'+
'<td id="IL1" align="center" nowrap><a href="../../index.html"><img src="../../img/menu/0/0.jpg" border="0"></a></td>'+
'<td id="IL2" align="center" nowrap><a href="../../co_index.html"><img src="../../img/menu/0/1.jpg" border="0"></a></td>'+
'<td id="IL3" align="center" nowrap><a href="../../dept.html"><img src="../../img/menu/0/2.jpg" border="0"></a></td>'+
'<td id="IL4" align="center" nowrap><a href="../../env.html"><img src="../../img/menu/0/3.jpg" border="0"></a></td>'+
'<td id="IL7" align="center" nowrap><a href="../../recruit.html"><img src="../../img/menu/0/4.jpg" border="0"></a></td>'+
'<td id="IL6" align="center" nowrap><a href="../../link.html"><img src="../../img/menu/0/5.jpg" border="0"></a></td>'+
'</tr>'+
'</table>'+
'</td>'+
'</tr>'+
'</table>');

//ブラウザのバージョンチェック
var brw_v = navigator.appVersion.charAt(0);
var brw_n = navigator.appName.charAt(0);
var iIE4 = false;
var iNN4 = false;
if((brw_v >= 4)&&(brw_n == "M"))iIE4 = true;
if((brw_v >= 4)&&(brw_n == "N"))iNN4 = true;

var Laymax = 4;		//レイヤー数
var Col = new Array();
Col[0] = "#a6a6a6";		//マウス非通過時の背景色(スタイルシート変更時は変える)
Col[1] = "#cccccc";		//iLの背景色
Col[2] = "#d3d3d3";		//マウス非通過時の背景色(スタイルシート変更時は変える)
Col[3] = "#e6e6fa";		//iLの背景色

// メインメニュー
function mMover(n){
	if(iIE4){
		document.all("IL"+n).style.backgroundColor = Col[1];
	}
	if(iNN4){
		document.layers["IL"+n].bgColor = Col[1];
	}
}

function mMout(n){
	if(iIE4){
		document.all("IL"+n).style.backgroundColor = Col[0];
	}
	if(iNN4){
		document.layers["IL"+n].bgColor = Col[0];
	}
}
// サブメニュー
function sMover(n){
	if(iIE4){
		document.all("IL"+n).style.backgroundColor = Col[3];
	}
	if(iNN4){
		document.layers["IL"+n].bgColor = Col[3];
	}
}
function sMout(n){
	if(iIE4){
		document.all("IL"+n).style.backgroundColor = Col[2];
	}
	if(iNN4){
		document.layers["IL"+n].bgColor = Col[2];
	}
}
