jQuery(function(){
jQuery("#nav>li").hoverIntent(
    function(){jQuery("ul",this).fadeIn("slow");},
    function(){jQuery("ul",this).css({left:"-1px"}).fadeOut("fast");});
});