// $Id: nice_menus.js,v 1.1.2.2 2006/08/06 10:16:20 jakeg Exp $

// We only do the javascript in IE.
// TODO: because we now only include the js file for IE, is this 'if' redundant?
if (document.all) {

  function IEHoverPseudo() {

    $('#nice-menu-1').children('li').hover(function(){
        $(this).addClass("over");
        },function(){
            $(this).removeClass("over");
        });
  }
  $(document).ready(IEHoverPseudo);
}
