// JavaScript Document

function elementOver(_elementId, _node)
{
    //if (document.all && window.print && document.getElementById)
    //{
        navRoot = document.getElementById(_elementId);
        //alert("test" + navRoot.childNodes.length );

        for (i=0; i < navRoot.childNodes.length; i++)
        {
            var node = navRoot.childNodes[i];
            //alert(node.nodeName);

            if (node.nodeName == _node)
            {
                node.onmouseover=function()
                {
                    this.className+="over";
                }
                node.onmouseout=function()
                {
                    this.className=this.className.replace("over", "");

                }
            }
        }
    //}
}


//window.onload=function(){ elementOver("KPNA", "P"); }
