// $Id: nice_menus.js,v 1.5.2.7 2008/02/09 17:42:07 add1sun Exp $

// We only do the javascript in IE thanks to drupal_set_html_head in .module.

  function IEHoverPseudo() {
      $("ul.nice-menu li.menuparent").hover(function(){
            document.getElementById('submenu').innerHTML = this.innerHTML;
       }
      );
    }

    // This is the jquery method of adding a function
    // to the BODY onload event.  (See jquery.com)
    $(document).ready(function(){ IEHoverPseudo() });