var menu1= new Array('Accueil','L\'Association','Vidéo','Calendrier','Contacts','Billetterie','Autres');
var menu2= new Array('index.html?0','purpose.html?1','video.html?2','calendar.html?3','contact.html?4','tickets.html?5','others.html?6');  //no olvidar agregar el menu activo con ?#

function correct_level(level){  //correct menu2[] level

  for (var i=1; i<=level; i++){
    for (var j=0;j<menu2.length;++j){
      menu2[j]="../"+menu2[j];
    }
  }
}

