        $(function(){        
    $("li").hover(
      function () {
      	if($(this).parent().attr("class")!='nav') 
        	$(this).children("ul").css({clear:'left', display:'block', position:'absolute', top:'0', left:$(this).parent().outerWidth()});
       	$(this).children("ul").show();        
      }, 
      function () {
        $(this).find("ul").hide();
      }
    );    
        });