$(function () {	
	$('.subMenu').each(function () {
		$(this).parent().eq(0).hoverIntent({
			timeout: 100,
			over: function () {
				var current = $('.subMenu:eq(0)', this);
				current.slideDown(100);
			},
			out: function () {
				var current = $('.subMenu:eq(0)', this);
				current.fadeOut(200);
				$(this).children('a').css('background-color', '#transparent');
				
			}
		});
	});
});
