﻿
$(document).ready(function(){
	$(".navDrop").hoverIntent({
		over: ShowDrops, 
		timeout: 0,
		out: HideDrops,
		sensitivity: 7,
		interval: 50
    });
});

function ShowDrops() {
    $('#' + this.id + ' .dropDown').fadeIn(300);
    $('#' + this.id + ' a').addClass('hover');
};
function HideDrops() {
    $('#' + this.id + ' .dropDown').fadeOut(100);
    $('#' + this.id + ' a').removeClass('hover');
};
