var sfHover = function() {
    $('#nav li ').mouseenter(function(){
        $(this).children('ul').css('left','auto');
    });
    $('#nav li ').mouseleave(function(){
        $(this).children('ul').css('left','-999px');
    });
   
}
if (window.attachEvent) window.attachEvent("onload", sfHover);
