﻿/*$(function () {

$('.subnav').each(function () {
	$(this).parent().eq(0).hoverIntent({
		timeout: 1200,
		over: function () {
			var current = $('.subnav:eq(0)', this);
			current.slideDown(500);
},

		out: function () {
			var current = $('.subnav:eq(0)', this);
			current.slideUp(500);
}
});
});
});*/

$(function () {

$('.subnav').each(function () {
	$(this).parent().eq(0).hoverIntent({
		timeout: 800,
		over: function () {
			var current = $('.subnav:eq(0)', this);
			current.slideDown(50);

},

		out: function () {
			var current = $('.subnav:eq(0)', this);
			current.hide(5);
}
});
});
});

