function top_menu(id){
	for(var i=0;i<=10;i++){
		if(i==id){
			document.getElementById("menu_"+i).className='m1';
		}else{
			document.getElementById("menu_"+i).className='m2';
		}
	}
}
function top_menu_class(id){
	for(var i=0;i<=4;i++){
		if(i==id){
			document.getElementById("menu_content_"+i).className='is_hidden_2';
		}else{
			document.getElementById("menu_content_"+i).className='is_hidden_1';
		}
	}
}
