
		<!---
		// 画像名
		main_nm = new Array("menu_0","menu_1","menu_2","menu_3","menu_4","menu_5","menu_6","menu_7");
		img_file_0 = new Array("menu3_08.gif","menu3_09.gif","menu3_05.gif","menu3_04.gif","menu3_03.gif","menu3_10.gif","menu3_12.gif","menu3_13.gif");
		img_file_1 = new Array("menu_img_2_1205197818.gif","menu_img_2_1205196054.gif","menu_img_2_1205195885.gif","menu_img_2_1205196039.gif","menu_img_2_1205196029.gif","menu_img_2_1205196011.gif","menu_img_2_1205195994.gif","menu_img_2_1205195984.gif");
		
		// 変数宣言
		img = new Array(99);
		
		// 画像セッティング
		for (ii=0; ii<main_nm.length; ii++){
			// 変数を画像宣言
			img[ii]    = new Image();
			img[ii+30] = new Image();
			
			// 画像割り当て
			img[ii].src    = "../menu_img/" + img_file_0[ii];
			img[ii+30].src = "../menu_img/" + img_file_1[ii];
		}
		
		var now_open = "";
		var now_bold = "";
		
		// 画像切替
		function imgChange(imgName,imgNum,loadFlg) {
			if (navigator.appVersion > "3") {
				if(now_open != "l_menu_1"){	document.images[imgName].src = img[imgNum].src;}
			}
		}
		
		//サブメニュー表示切替
		function chDisp(a, b, c)	{
			if(a.style.display != "none"){
				a.style.display = "none";
				document.images[b].src = (b != "l_menu_1")? "../img/r_triangle_close.gif" : "../menu_img/menu3_09.gif";
				if(c != ""){
					if(document.all){
						document.all(c).style.fontWeight = "normal";
					}else if(document.getElementById){
						document.getElementById(c).style.fontWeight = "normal";
					}
				}
				now_open = "";
				now_bold = "";
			}else{
				var coll = document.all && document.all.tags('TD')
					|| document.getElementsByTagName && document.getElementsByTagName('TD');
				if(!coll) return;
				j = coll.length;
				
				for (i=0; i<j; i++){
					if(coll[i].className == "subm"){
						coll[i].style.display = "none";
					}
				}
				
				a.style.display = "block";
				
				if(now_open != ""){
					document.images[now_open].src = (now_open != "l_menu_1")? "../img/r_triangle_close.gif" : "../menu_img/menu3_09.gif";
				}
				if(now_bold != ""){
					if(document.all){
						document.all(now_bold).style.fontWeight = "normal";
					}else if(document.getElementById){
						document.getElementById(now_bold).style.fontWeight = "normal";
					}
				}
				
				now_open = b;
				if(b != ""){
					document.images[b].src = (b != "l_menu_1")? "../img/g_triangle_open.gif" : "../menu_img/menu_img_3_1205196075.gif";
				}
				if(c != ""){
					if(document.all){
						document.all(c).style.fontWeight = "bold";
					}else if(document.getElementById){
						document.getElementById(c).style.fontWeight = "bold";
					}
				}
				now_bold = c;
			}
		}
		
		function tri_chg(a, b)	{
			if (now_open != a){
				document.images[a].src = (b == 1)? "../img/g_triangle_close2.gif" : "../img/r_triangle_close.gif";
			}
		}
		function tri_chg_g(a, b)	{
			document.images[a].src = (b == 1)? "../img/g_triangle_close2.gif" : "../img/g_triangle_close.gif";
		}
		
		function sf(){
			document.f.s3.focus();
		}
		
		//--->