$(document).ready(function() {
 $("#top_menu li").hover(
  function(){ $("ul", this).fadeIn("normal"); }
  , function() { }
 );
 if (document.all) {
  $("#top_menu li").hoverClass("mover");
 }
});

$.fn.hoverClass = function(c) {
 return this.each(function() {
  $(this).hover(
   function() { $(this).addClass(c); }
   , function() { $(this).removeClass(c); }
  );
 });
};
