function ComponentStaticPageMenuAssignMouseEventsToLi(sParentId)
{
	var oParent = document.getElementById(sParentId);
	if (oParent)
	{
		if (oParent.getElementsByTagName)
		{
			var aChilds = oParent.getElementsByTagName("li");
			var i = 0;
			while (i < aChilds.length)
			{
				aChilds[i].onmouseover = function() {this.className = "over"; }
				aChilds[i].onmouseout = function() {this.className = ""; }
				i++;
			}
		}
	}
}