function GetObj(objName){
	if(document.getElementById){
		return eval('document.getElementById("' + objName + '")');
	}else{
		return eval('document.all.' + objName);
	}
}
function Show_Sub(id_num,num){
	for(var i = 0;i <= 30;i++){
		if(GetObj("S_Menu_" + id_num + i)){GetObj("S_Menu_" + id_num + i).className = '';}
		if(GetObj("S_Cont_" + id_num + i)){GetObj("S_Cont_" + id_num + i).style.display = 'none';}
	}
	if(GetObj("S_Menu_" + id_num + num)){GetObj("S_Menu_" + id_num + num).className = 'selectd';}
	if(GetObj("S_Cont_" + id_num + num)){GetObj("S_Cont_" + id_num + num).style.display = 'block';}
}


// language set
$(document).ready(function() {
	$("div.sel_lan_button").click(function(){
		$("div#sel_lan_con").animate({
			height: "104px"
		})
		.animate({
			height: "104px"
		}, "fast");
		$("div.sel_lan_button").toggle();
	
	});	
	
   $("div#hide_button").click(function(){
		$("div#sel_lan_con").animate({
			height: "0px"
		}, "fast");
		
	
   });	
	
});
