// JavaScript Document
function ShowTable(id)
{	
	var sel = document.getElementById(id);

	if(sel.style.display!='block'){
                document.getElementById('contenutexte1').style.display = 'none';
                document.getElementById('contenutexte2').style.display = 'none';
                document.getElementById('contenutexte3').style.display = 'none';
		document.getElementById('contenutexte4').style.display = 'none';
		sel.style.display = 'block';
	}else{
		sel.style.display = 'none';
	}			
}


// Javascript originally by Patrick Griffiths and Dan Webb.
// http://htmldog.com/articles/suckerfish/dropdowns/
sfHover = function() {
	var sfEls = document.getElementById("navbar").getElementsByTagName("li");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" hover";
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" hover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);


<!--
function MM_reloadPage(init) {  //reloads the window if Nav4 resized
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);
//-->
