// JavaScript Document
$(function() {
  $("ul#level-one li").hover(
    function(){ $("ul", this).fadeIn("fast"); },
    function(){ $("ul", this).fadeOut("fast"); }
  );
  /*
  if (document.all) {
    $("ul#level-one li").hoverClass ("sfHover");
  }
  */
});