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

