/**
 *	MENU PRINCIPAL 
 */

$(function() {
	/* Administrar Menu */
	$("#lst_category").parent().mouseover(function() {
		$(this).find('.mnu_category').show();
	});

	$("li #lst_category").parent().mouseout(function() {
		$(this).find('.mnu_subcategory').hide();
		$(this).find('.mnu_category').hide();
	});
	
	/* Administrar subMenues */
	$(".mnu_subcategory").parent().mouseover(function() {
		$(this).find('.mnu_subcategory').show();
	});
	
	$(".mnu_subcategory").mouseleave(function() {
		$(this).hide();
	});
});
