function xixi(c,me){
	//white all menu
	for(i=0;i<5;i++){
		dismenu_t(i);
	}
	for(i=5;i<10;i++){
		dismenu_b(i);
	}
	
	if(c=='t'){
		var m=document.getElementById('t_l_'+me);
		//m.className='lang_s';
		m.style.cssText="border-top:1px #3EBD03 solid;border-bottom:1px #ffffff solid;";	
		//m.style.cssText="";		
	}else{
		var m=document.getElementById('b_l_'+me);
		//m.className='lang_s';
		m.style.cssText="border-bottom:1px #3EBD03 solid;border-top:1px #ffffff solid;";
		//m.style.cssText="";		
	}
	

	
	//white all content
	for(i=0;i<10;i++){
		discontent(i);
	}	
	
	var gg=document.getElementById('lang_'+me);
	gg.style.display='block';
}

function dismenu_t(j){
	var m=document.getElementById('t_l_'+j);
	m.style.cssText="border-top:1px #C7F4BD solid;border-bottom:1px #C7F4BD solid;";
	//m.style.cssText="";
}
function dismenu_b(j){
	var m=document.getElementById('b_l_'+j);
	m.style.cssText="border-top:1px #C7F4BD solid;border-bottom:1px #C7F4BD solid;";
	//m.style.cssText="";
}
function discontent(j){
	var gg=document.getElementById('lang_'+j);
	gg.style.display='none';
}