// JavaScript Document
	function updatebg(obj,id,idd){
		 obj.style.backgroundColor="#fffee0";
		 obj.style.backgroundImage="url(html/images/index_pm_pbg.jpg)";
		 document.getElementById(id).style.display="block";
		 document.getElementById(id).style.border="1px solid #a10000";
	     document.getElementById(idd).style.backgroundColor="#b4b4b4";
	 }
 
	function hiddenbg(obj,id,idd){
	
		 obj.style.backgroundColor="#fff";
		 obj.style.backgroundImage="none";
		 document.getElementById(id).style.display="block";
		 document.getElementById(id).style.border="1px solid #ffffff";
		 document.getElementById(idd).style.backgroundColor="#ebebeb";
	}

	var oldObj;
	function proup(obj,id){
	if(oldObj!=null){
		oldObj.style.backgroundImage="url(html/images/px.jpg)";
		oldObj.style.display="block";
	}
	oldObj=document.getElementById(id);
	document.getElementById(id).style.backgroundImage="url(html/images/pxh.jpg)";
	document.getElementById(id).style.display="block";
	
	}
	
	function dispmenu(id){
	
		document.getElementById(id).style.backgroundImage="url(html/images/index_menuhov.jpg)";
		
		document.getElementById(id).style.color="#FFFFFF";
		
		/*var changeco=document.getElementById(id);
		changeco.className="hovcolor";
		*/
		if(id!='dism1')
		{
		var idcontent=document.getElementById(id+"_");
		idcontent.style.display='block';
		}
		
	
	}
	function udispmenu(id){
		
		document.getElementById(id).style.backgroundImage="url(html/images/index_menu.jpg)";
		document.getElementById(id).style.color="#333333";
		/*var changeco=document.getElementById(id);
		changeco.className="discolor";
		*/
		if(id!='dism1')
		{
		var idcontent=document.getElementById(id+"_");
			idcontent.style.display='none';
		}
	}
	
	
	function dispmenu2(id){
		var idcontent=document.getElementById(id+"_");
		idcontent.style.display='block';
	
	}

	function udispmenu2(id){
		var idcontent=document.getElementById(id+"_");
			idcontent.style.display='none';
	}

