function switchClass(id)
{
	document.getElementById(id).style.background = "url('images/"+id+"_on.gif') center 0px no-repeat";
}

function switchClassOff(id)
{
	document.getElementById(id).style.background = "url('images/"+id+"_off.gif') center 0px no-repeat";
}

function openDetail(id1,id2,id3)
{
	if (document.getElementById(id2).style.display=="block")
	{
		document.getElementById(id1).style.background="url('images/fleche_down.gif') 0px 3px no-repeat";
		document.getElementById(id2).style.display="none";
		document.getElementById(id3).style.color="#959595";
	}
	else 
	{	
		document.getElementById(id1).style.background="url('images/fleche_up.gif') 0px 3px no-repeat";
		document.getElementById(id2).style.display="block";
		document.getElementById(id3).style.color="#cc0044";
	}
}

function openDetailAncre(id1,id2,id3)
{
	document.getElementById(id1).style.background="url('images/fleche_up.gif') 0px 3px no-repeat";
	document.getElementById(id2).style.display="block";
	document.getElementById(id3).style.color="#cc0044";
}



document.write('<style type="text/css">.contenu_centre_module_ouvert{	display:none;}</style> ');