(function($) {
	$(function() {
		$('#menuPrincipal ul').hide();

		$('#menuPrincipal li[data-menu]').each(function() {
			var ul = $('ul#' + $(this).attr('data-menu')).clone();
			ul.addClass('subNavMain').removeAttr('id');
			$(this).append(ul);
		});

		$('#menuPrincipal>li').hoverIntent({
			over: function() {
				$('ul', this).css('margin-left', 0).stop(true, true).fadeIn();
			},
			out: function() {
				$('ul', this).stop(true, true).fadeOut('slow', function() {
					$(this).css('margin-left', '-5000em');
				});
			},
			timeout: 100
		});
	});
})(jQuery);
