///////////////////////////////////////////////////////////////////////////
// VertiMenu.js 
// Fonctions pour Menu Vertical
// Luc Bouchard & Ass.											00-06-20
///////////////////////////////////////////////////////////////////////////

var NS       =  (document.layers) ? true : false;
function CheckIfNS() {return NS;}


//**************************** EVENT FUNCTION **************************
function OnMenuVertiMouseOver()
{
	if (!CheckIfNS())
	{
		var pObjParent = window.event.srcElement.parentElement;
		if (pObjParent) 
		{
			pObjParent.bgColor="#ffcc00"; 
		}
	}
}

function OnMenuVertiMouseOut()
{
	if (!CheckIfNS())
	{
		var pObjParent = window.event.srcElement.parentElement;
		if (pObjParent) 
		{
			pObjParent.bgColor = "#FFEA93";
		}
	}
}
