// JavaScript Document

function affichemenu(id){ document.getElementById(id).style.visibility="visible"; }
function cachemenu(id){ document.getElementById(id).style.visibility="hidden"; }

function puceOn(id){ document.getElementById(id).style.listStyle="disc"; }
function puceOff(id){ document.getElementById(id).style.listStyle="circle"; }

function puceOnPlan(id){ document.getElementById(id).style.listStyle="circle"; }
function puceOffPlan(id){ document.getElementById(id).style.listStyle="disc"; }

/* Menu deroulant : Bug ie */

function forceOpaciteOut(id){
	document.getElementById(id).style.backgroundImage="url("+HTMLURL+"img/shell/fnd-menu-off.png)";	
}

function forceOpaciteOver(id){
	document.getElementById(id).style.backgroundImage="url("+HTMLURL+"img/shell/fnd-menu-on.png)";
}