<!--
var annexeIndex = 1;
var timeannexe = 0;

function displayannexe() {
  for (i=1; i<=10; i++) {
    if (annexeIndex != i) {
      document.getElementById('annexe'+(i)).style.display = 'none';       
      document.getElementById('abo'+(i)).style.color = '#777777';       
    }
  }
  document.getElementById('annexe'+(annexeIndex)).style.display = 'block';       
  document.getElementById('abo'+(annexeIndex)).style.color = '#000077';       
  if (timeannexe != 0) {
    timeannexe = window.setTimeout ("nextAutomatiqueannexe();",5000);
  }
}

function nextAutomatiqueannexe() {
  annexeIndex ++;
  if (annexeIndex >= 11) {
    annexeIndex = 1;
  }
  displayannexe();
}

function nextannexe() {
  window.clearTimeout(timeannexe);
  timeannexe = 0;
  annexeIndex ++;
  if (annexeIndex >= 11) {
    annexeIndex = 1;
  }
  displayannexe();
}

function previousannexe() {
  window.clearTimeout(timeannexe);
  timeannexe = 0;
  annexeIndex --;
  if (annexeIndex <= 0) {
    annexeIndex = 10;
  }
  displayannexe();
}

timeannexe = window.setTimeout ("nextAutomatiqueannexe();",5000);
-->
