function gl_jump(){
	sb = document.getElementById('country_select');
	si = sb.selectedIndex;
	document.location.href = sb.options[si].value;
}

function menu_popup(category){
	if(document.getElementById("sm_"+category)){
		document.getElementById("sm_"+category).style.display = "block";
	}
}

function menu_hide(category){
	for(j=0; j<menu_num; j++){
		if((document.getElementById("sm_"+j)) && (menu_num != category)){
			document.getElementById("sm_"+j).style.display = "none";
		}
	}
}
function cell_over(c,d){
	for(k=0; k<menu_item_max; k++){
		if(cell = document.getElementById("cell_" + c + k)){
			if(k==d){
				cell.style.backgroundColor = "#999999";
				cell.style.color = "#ffffff";
			}else{
				cell.style.backgroundColor = "#EEEEEE";
				cell.style.color = "#333333";
			}
		}
	}
}
