var FF, NbreH=4;
var tabInfo=new Array();
tabInfo[1]="<a href='#a1' onclick='Ferme();'>Anciens Combattants</a> - ligne A<br><a href='#a1' onclick='Ferme();'>Club des Arbousiers</a> - ligne A<br><a href='#a2' onclick='Ferme();'>C.A.L.G.</a> - ligne B<br><a href='#a2' onclick='Ferme();'>Sou des Écoles</a> - ligne B";
tabInfo[2]="<a href='#a3'>Boule Gagniéroise</a> - ligne C<br><a href='#a3'>Chasseurs Gagniérois</a> - ligne C<br><a href='#a4'>Élan Gagniérois</a> - ligne D<br><a href='#a4'>Ensemble Pas à Pas</a> - ligne D<br><a href='#a5'>Rencontre autour de l'Art</a> - ligne E";
tabInfo[3]="<a href='#a5'>Amicale Vélo Club</a> - ligne E<br><a href='#a6'>Gymnastique</a> - ligne F<br><a href='#a6'>U.S.G.</a> - ligne F";
tabInfo[4]="<a href='#a7'>Ânerie du Boudarel</a> - ligne G<br><a href='#a7'>A.F.D.O.C. du Gard</a> - ligne G<br><a href='#a8'>Centre Chrétien</a> - ligne H";
 
function Init() {
  Ferme();
  if(document.all) { FF=0; }
  else { FF=1; } }

function Ferme() {
  document.getElementById("Mobile").style.visibility="hidden"; }

function Ouvre(num) {
  var objAffiche=document.getElementById("Mobile");
  objAffiche.innerHTML =tabInfo[num];
  objAffiche.style.left=((num-1)*160 + 2 + num*5*FF) + "px";
  objAffiche.style.visibility="visible"; }
   
  
