 window.onload=menudbm;
 
 function menudbm(id,affiche)
{
	var d = document.getElementById(id);
 	if (d && !affiche) 
	{
		d.style.display='none';  
		var c=d.parentNode;  
		if (c.parentNode.parentNode.parentNode.tagName!='DIV')   
		{
			c.firstChild.style.color='';
			c.firstChild.style.background='';
		}
	}
	 
	else if (d && affiche)
	{ 
		d.style.display='block';  
		var c=d.parentNode;  
		if (c.parentNode.parentNode.parentNode.tagName!='DIV')  
		{
			c.firstChild.style.color='';
			c.firstChild.style.background='';
		}
	}
}