function show_tab(curtab) {
for (k=1; k<=5; k++) {
  eltcurtab = document.getElementById('ct'+k);
  if (eltcurtab) {
    eltcurtab.style.display="none";
  }
  eltcurtab = document.getElementById('og'+k);
  if (eltcurtab) {
    eltcurtab.className = "";
  } 
}
eltcurtab = document.getElementById(curtab);
if (eltcurtab) {
  eltcurtab.style.display="block";
}
eltcurtab = document.getElementById('og'+(curtab.substring(2,3)));
if (eltcurtab) {
  eltcurtab.className="selected";
}

}

startList = function() {
  if (document.all&&document.getElementById) {
    navRoot = document.getElementById("menu-gauche");
    for (i=0; i<navRoot.childNodes.length; i++) {
      node = navRoot.childNodes[i];
      if (node.nodeName=="li") {
        node.onmouseover=function() {
          this.className+=" over";
        }
        node.onmouseout=function() {
          this.className=this.className.replace(" over", "");
        }
      }
    }
  }
}
window.onload=startList;


