// JavaScript Document

function elementOver(_element, _node)
{
	if (document.all && window.print && document.getElementById)
	{
		navRoot = document.getElementById(_element);
		for (i=0; i < navRoot.childNodes.length; i++)
		{
			var node = navRoot.childNodes[i];
			if (node.nodeName == _node)
			{
				node.onmouseover=function()
				{
					this.className+=" over";
  				}
	 			node.onmouseout=function()
	 			{
					this.className=this.className.replace(" over", "");
				}
			}
		}
	}
}
elementOver("list", "DD");