﻿//<![CDATA[
//<!--

startMeny = function() 
{
    if (document.all && document.getElementById) 
    {
        menyRoot = document.getElementById("meny");
        
        for (x = 0; x < menyRoot.childNodes.length; x++) 
        {
            node = menyRoot.childNodes[x];
    
            if (node.nodeName == "LI") 
            {
                node.onmouseover = function() 
                {
                    this.className += " over";
                }
                node.onmouseout = function() 
                {
                    this.className = this.className.replace(" over", "");
                }
            }
        }
    }
}

//-->
//]]>