/*//////////////// GESTION DES SOUS-MENUS MULTICANAL /////////////////*/

	function montrer(){
		document.getElementById('menu_catalogues').style.display = 'block';
		document.getElementById('lien_catalogues').style.backgroundPosition = 'bottom left';
	}
	
	function cacher(){
		document.getElementById('menu_catalogues').style.display = 'none';
		document.getElementById('lien_catalogues').style.backgroundPosition = 'top left';
	}
	
	function montrer2(){
		document.getElementById('menu_boutiques').style.display = 'block';
		document.getElementById('lien_boutiques').style.backgroundPosition = 'bottom left';
	}
	
	function cacher2(){
		document.getElementById('menu_boutiques').style.display = 'none';
		document.getElementById('lien_boutiques').style.backgroundPosition = 'top left';
	}
