// This JS code lib (c)Alain Rollmann

function openOrCloseMenu(menuList,bt) {
	if(document.getElementById(menuList).style.display=='none' || document.getElementById(menuList).style.display=='') {
		document.getElementById(menuList).style.display='block';
		bt.src='images/less_arrow.gif';
	} else {
		document.getElementById(menuList).style.display='none';
		bt.src='images/more_arrow.gif';
	}
}

// Fonction qui affiche ou réduit le contenu des news ou agenda
function showHide(shID) {
   if (document.getElementById(shID)) {
      if (document.getElementById(shID+'-show').style.display != 'none') {
         document.getElementById(shID+'-show').style.display = 'none';
         document.getElementById(shID).style.display = 'inline';
      }
      else {
         document.getElementById(shID+'-show').style.display = 'inline';
         document.getElementById(shID).style.display = 'none';
      }
   }
}


