$(function () {
	
	$('.subnav').each(function () {
		$(this).parent().eq(0).hoverIntent({
			timeout: 100,
			over: function () {
				var current = $('.subnav:eq(0)', this);
				current.fadeIn(300);
			},
			out: function () {
				var current = $('.subnav:eq(0)', this);
				current.fadeOut(200);
			}
		});
	});
});