<!-- 
		//ブラウザの名前
		var NN,IE;
			
		NN=(navigator.appName=="Netscape");
		IE=(navigator.userAgent.indexOf("MSIE") != -1);

		var img_left;//左座標を入れる
		var lyr;//レイヤー名を入れる
		var title_timer;
			
		//見出し線用↓
		var line_p_node,line_c_node,line_c_node_br;　//親子ノードを格納する変数;
		var count=2;　//各画像用変数
		var line_timer;//タイマー用の変数
		
		//メニューフレーム用--------------------------------------------------------------------------
		//会社方針の初期状態をbodyをロードする際に設定
		function display(id){
		
 			var disp = document.getElementById(id).style;
			
			//idのstyleプロパティに、CSSのdisplayプロパティを設定し､値を与えてサブメニューを隠している
			disp.display="none";
		}
	
		function treeMenu(id) {
		
 			var disp = document.getElementById(id).style;
			
			//サブメニューのdisplayプロパティの状態により、表示を変えている。
			if(disp.display != "none") {
				disp.display="none";
			}else {
				disp.display="block";
			}
		}



		//ページ見出し用JS_______________________________________________________	
		//座標取得
		function get_position(lyr){
			//レイヤーの左座標取得
			if(IE){
				img_left=parseInt(document.getElementById(lyr).style.pixelLeft);
			}else if(NN){
				img_left=parseInt(document.getElementById(lyr).style.left);
			}
		}

		//座標代入
		function set_position(lyr){
			//レイヤーの左座標代入
			if(IE){
				document.getElementById(lyr).style.pixelLeft=img_left;
			}else if(NN){
				document.getElementById(lyr).style.left=img_left;
			}
		}

		//座標を動かす
		function move_position(lyr){
			img_left+=10;
			//座標代入を呼ぶ
			set_position(lyr);	
		}

		//タイマー＆メイン
		function lyr_main(lyr){
			clearTimeout(title_timer);
			get_position(lyr);
			if(img_left<=0){
				move_position(lyr);
				title_timer=setTimeout("lyr_main('p_title')",45);
			}
		}
			
		//見出し線用JS________________________________________________________________________________  
		function Add_Image(){
			clearTimeout(line_timer);
			if(count>=0){
				//イメージタグを生成
				line_c_node=document.createElement("img");
				line_c_node_br=document.createElement("br");

				//イメージタグの属性設定
				line_c_node.setAttribute("src","picture/line"+ count +".gif");
				line_c_node.setAttribute("height","5");
				line_c_node.setAttribute("width","400");
			
				//子ノードにする
				line_p_node.appendChild(line_c_node);
				line_p_node.appendChild(line_c_node_br);
				count-=1;
				line_timer=setTimeout("Add_Image()",500);
			}
		}
		
		//トップページ背景画像用js---------------------------------------------------------------
		function change(pic){
			var c=document.location.href;
			var ur;
			
			ur=c.lastIndexOf("/");
			ur+=1;
			
			if(c.substr(ur)=="index.html"){
				document.body.style.backgroundImage="url("+ pic +")";
			}
		}

//-->
