// JavaScript Document

	//调用导航菜单
	
	function menu_on(x)
	{
		
		document.getElementById("menu_min"+x).className="menu_show";
		
	}
	function menu_off(x)
	{	
		document.getElementById("menu_min"+x).className="menu_hide";
	}
	
	function menu_on2(x)
	{
		
		document.getElementById("menu_min"+x).className="menu_show2";
		
	}
	function menu_off2(x)
	{	
	    
		document.getElementById("menu_min"+x).className="menu_hide2";
	}
	
	
	
	function bluring()//去除点击焦点
	{ 
		if(event.srcElement.tagName=="A"||event.srcElement.tagName=="IMG") document.body.focus(); 
	} 
		document.onfocusin=bluring; 
		
		
		
		
	function qingkong() //清空搜索栏内的字
	{
		if(document.form1.q.value=="キーワード…")
		document.form1.q.value="";
	}
	function tianjia()//如果没有输入内容，则把搜索关键字放入框中……
	{
		if(document.form1.q.value==""||document.form1.q.value==" "||document.form1.q.value=="  ")
		document.form1.q.value="キーワード…";
	}
	
	function sousuo_on()//搜索按钮变成彩色
	{
		document.getElementById("sousuo_button").style.backgroundImage="url(images/button_ss_hover.jpg)";
	}
	function sousuo_off()//搜索按钮变成灰色
	{
		document.getElementById("sousuo_button").style.backgroundImage="url(images/button_ss_link.jpg)";
	}
	
	function sousuo_on_i()//搜索按钮变成彩色
	{
		document.getElementById("sousuo_button").style.backgroundImage="url(jp/images/button_ss_hover.jpg)";
	}
	function sousuo_off_i()//搜索按钮变成灰色
	{
		document.getElementById("sousuo_button").style.backgroundImage="url(jp/images/button_ss_link.jpg)";
	}
	
	function button_on()
	{
		document.getElementById("message_tj").style.backgroundImage="url(images/button_submit_hover.jpg)";	
	}
	function button_off()//搜索按钮变成灰色
	{
		document.getElementById("message_tj").style.backgroundImage="url(images/button_submit.jpg)";
	}
	
	
	function map_menu_on()/*网站地图页面  第二隐藏菜单  显示*/	
	{
		document.getElementById("map_min_menu").className="map_min_menu_on";
	}
	function map_menu_off()/*网站地图页面  第二隐藏菜单  隐藏*/	
	{
		document.getElementById("map_min_menu").className="map_min_menu_off";

	}

