WebFontConfig = {
  google: { families: [ 'Droid Sans','Droid Sans Mono','Arvo','Arimo','Cantarell','Crimson Text' ] }
};
(function() {
  var wf = document.createElement('script');
  wf.src = ('https:' == document.location.protocol ? 'https' : 'http') +
      '://ajax.googleapis.com/ajax/libs/webfont/1/webfont.js';
  wf.type = 'text/javascript';
  wf.async = 'true';
  var s = document.getElementsByTagName('script')[0];
  s.parentNode.insertBefore(wf, s);
})();

$(document).ready(function() {
  function addMenu(){
    $(this).addClass("hovering");
    }
  function removeMenu(){
    $(this).removeClass("hovering");
  }
  var megaConfig = {    
    interval: 100,
    sensitivity: 4, 
    over: addMenu,
    timeout: 300,
    out: removeMenu
  };
  $("ul.site-nav li.main").hoverIntent(megaConfig);
});
