<!--
	myGifCnt = 16;							// ボタン画像の総数をセットします
	myGifTbl = new Array(					// ボタン画像テーブルを作成
		"common.files/ind-01.gif",			// [0] 「トップ」ボタン(暗)
		"common.files/ind-01on.gif",		// [1] 「トップ」ボタン(明)
		"common.files/ind-02.gif",			// [2] 「会社概要」ボタン(暗)
		"common.files/ind-02on.gif",		// [3] 「会社概要」ボタン(明)
		"common.files/ind-05.gif",			// [4] 「トピックス」ボタン(暗)
		"common.files/ind-05on.gif",		// [5] 「トピックス」ボタン(明)
		"common.files/ind-03.gif",			// [6] 「製品一覧」ボタン(暗)
		"common.files/ind-03on.gif",		// [7] 「製品一覧」ボタン(明)
		"common.files/ind-04.gif",			// [8] 「価格表」ボタン(暗)
		"common.files/ind-04on.gif",		// [9] 「価格表」ボタン(明)
		"common.files/ind-06.gif",			// [10] 「豆知識」ボタン(暗)
		"common.files/ind-06on.gif",		// [11] 「豆知識」ボタン(明)
		"common.files/ind-07.gif",			// [12] 「問い合わせ」ボタン(暗)
		"common.files/ind-07on.gif",		// [13] 「問い合わせ」ボタン(明)
		"common.files/ind-08.gif",			// [14] 「」ボタン(暗)
		"common.files/ind-08on.gif"			// [15] 「」ボタン(明)
	);
	mySrcTbl = new Array( myGifCnt );		// 画像データをメモリに読み込むテーブル定義
	for (i=0; i<myGifCnt; i++){				// 画像データ数分ループする
		mySrcTbl[i] = new Image();			// 画像バッファ生成
		mySrcTbl[i].src = myGifTbl[i];		// メモリに画像データを取り込む
	}
	function myChange( myBtnNo , myTblNo ){	// 画像変更関数
		document.images["myBtn"+myBtnNo].src = mySrcTbl[myTblNo].src;
	}


	document.write('<div ID=top style=text-align:center;white-space:nowrap;>');
		document.write('<a href="index.html" onmouseover="myChange(0,1);" onmouseout="myChange(0,0);"><img border="0" name="myBtn0" src="common.files/ind-01.gif"></a> ');
		document.write('<a href="J-KAISHA.html" onmouseover="myChange(1,3);" onmouseout="myChange(1,2);"><img border="0" name="myBtn1" src="common.files/ind-02.gif"></a> ');

		document.write('<a href="J-TOPICS.html" onmouseover="myChange(2,5);" onmouseout="myChange(2,4);"><img border="0" name="myBtn2" src="common.files/ind-05.gif"></a> ');

		document.write('<a href="J-PRODUCTS.html" onmouseover="myChange(3,7);" onmouseout="myChange(3,6);"><img border="0" name="myBtn3" src="common.files/ind-03.gif"></a> ');
		document.write('<a href="J-KAKAKUHYO.html" onmouseover="myChange(4,9);" onmouseout="myChange(4,8);"><img border="0" name="myBtn4" src="common.files/ind-04.gif"></a> ');
		document.write('<a href="J-MAME.html" onmouseover="myChange(5,11);" onmouseout="myChange(5,10);"><img border="0" name="myBtn5" src="common.files/ind-06.gif"></a> ');
		document.write('<a href="J-TOIAWASE.html" onmouseover="myChange(6,13);" onmouseout="myChange(6,12);"><img border="0" name="myBtn6" src="common.files/ind-07.gif"></a></div>');
// -->
