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

