$(document).ready(function(){  $('#lower_menu li ul').css({    display: "none",    left: "auto"  });  $('#lower_menu li').hover(function() {    $(this)      .find('ul')      .stop(true, true)      .fadeIn('fast');  }, function() {    $(this)      .find('ul')      .stop(true,true)      .fadeOut('slow');  });});
