function initMenu()
{
    var select = document.getElementById("select");
    if( select != null )
    {
	    var nodes = select.getElementsByTagName("a");
	    if( nodes != null )
	    {
	        for (var i=0; i<nodes.length; i++)
	        {
		        if(nodes[i].className.indexOf("opener") != -1)
		        {
			        nodes[i].onmouseover = function()
			        {
				        this.parentNode.parentNode.parentNode.parentNode.className +=" select";
			        }
			        nodes[i].onmouseout = function()
			        {
				        this.parentNode.parentNode.parentNode.parentNode.className = this.parentNode.parentNode.parentNode.parentNode.className.replace("select", "");
			        }
		        }
	        }
	    }
	}
}
if (window.addEventListener) window.addEventListener("load", initMenu, false);
else if (window.attachEvent) window.attachEvent("onload", initMenu);
					