$(function() {

  $('.dropHolder').hoverIntent({    
    sensitivity: 3,
    interval: 0,  
    over: function() {
        $(this).children('h5').addClass('active');
        $(this).children('.dropdown').css('display','block');
      },
    timeout:100,
    out: function() {
        $(this).children('h5').removeClass('active');
        $(this).children('.dropdown').css('display','none');
      } 
  });
  
  
});
