﻿jQuery(function ($) {

  function megaHoverOver() {
    $(this).addClass('dgn-root-hover').find("ul.dnnSubNav").stop().show(); 
  }

  function megaHoverOut() {
    $(this).removeClass('dgn-root-hover').find("ul.dnnSubNav").stop().fadeOut('fast', function () {
      $(this).hide();  
    });
  }

  var config = {
    sensitivity: 2, 
    interval: 100, 
    over: megaHoverOver, 
    timeout: 300, 
    out: megaHoverOut 
  };

  $("ul.dnnGlobalNav li.dgn-root").hoverIntent(config); //Trigger Hover intent with custom configurations

});
