$(document).ready(function(){
  // global menu pulldown function
  $('#menu li').hoverIntent(function() {
    $(this)
      .find('.menuSub')
      .stop(true, true)
      .slideDown(100);
  }, function() {
    $(this)
      .find('.menuSub')
      .stop(true,true)
      .fadeOut(250);
  });
});

