// JavaScript Document
//<![CDATA[
        startList = function( )
        {
                if( document.all&&document.getElementById )
                {
                        navRoot = document.getElementById( "navigation_top" ).childNodes[ 0 ];
                        for( i = 0; i < navRoot.childNodes.length; ++i )
                        {
                                node = navRoot.childNodes[ i ];
                                if (node.nodeName == "LI" )
                                {
                                        node.onmouseover = function( )
                                        {
                                                this.className += " over";
                                        }

                                        node.onmouseout = function( )
                                        {
                                                this.className = this.className.replace( " over", "" );
                                        }
                                }
                        }
                }
        }
//      window.onload = startList; // this is now done by start-function in fix_ie_hover.js
//]]>


function HideIFrame( element )
{
        document.getElementById(element).style.display = "none";
}

function ShowIFrame( element )
{
		
        document.getElementById(element).style.display = "inline";
}

function start()
{
       // infoinit(); 
        startList();
}

window.onload = start;

