// JavaScript Document
var ie6=false;

try {
	document.execCommand("BackgroundImageCache", false, true);
} catch(err) {}

function redimContenu(){
	var container=document.getElementById('container');
	var contenu=document.getElementById('contenu');
	if (contenu){
		if (ie6) container.style.height=contenu.offsetHeight+"px";
		else container.style.height=contenu.offsetHeight+contenu.offsetTop+"px";
	}
}

function visibleLevel3(elt){
	
	// Variable
	var li=elt;
	
	// On vérifie si on était l'élément courant et dans ce cas on change l'état
	if (li.id=='gauche_courant') return false;
	
	// On cache l'ancien élément et on rend visible le courant
	else{
		var ancien_li=document.getElementById('gauche_courant');
		if (ancien_li) ancien_li.id='';
		li.id='gauche_courant';
	}
}

function init(){
	redimContenu();	
}

window.onload=function (){init();};