function montre(elem)
{
document.getElementById(elem).style.display="block";
}

function cache(elem)
{
document.getElementById(elem).style.display="none";
}

function fond_vert(elem)
{
document.getElementById(elem).style.backgroundColor='#93BE05';
}

function fond_orange(elem)
{
document.getElementById(elem).style.backgroundColor='#F8B332';
}

function fond_vert_menu4()
{
document.getElementById('menu4').style.backgroundColor='#93BE05';
}