function aktywuj_menu(nazwa)
  {

  	if( document.all && document.getElementById(nazwa).currentStyle ) {  
      var nazwa_root = document.getElementById(nazwa);
      var lista = nazwa_root.getElementsByTagName("LI");  
   
      for( var i = 0; i < lista.length; i++ )
      {
        // jezeli menu ma jeszcze jeden poziom
        if( lista[i].lastChild.tagName == "UL" ) {
          lista[i].onmouseover = function() {	
            this.lastChild.style.display = "block";
          }
                
          lista[i].onmouseout = function() {   
            this.lastChild.style.display = "none";
          }
        } // if
      } // for
  	} // if
  } // function

  window.onload = function() {
    aktywuj_menu('main_menu'); 
  }