// JavaScript Document

	function hide_fr(){
		document.getElementById('menu_loc_fr').style.visibility = "hidden";
	}
	
	function show_loc_fr(){
		document.getElementById('menu_loc_fr').style.visibility = "visible";
	}
	
	function hide_en(){
		document.getElementById('menu_loc_en').style.visibility = "hidden";
	}
	
	function show_loc_en(){
		document.getElementById('menu_loc_en').style.visibility = "visible";
	}
	
	