jQuery.noConflict();

jQuery(function() {
	jQuery('#menuPrincipal>ul li, #menuSecundario>ul li').hover(
		function() {
			jQuery(this).find('ul').each(function() {
				jQuery(this).css('opacity', 0);
				jQuery(this).stop();
				jQuery(this).show().fadeTo(300, 1);
			})
		},

		function() {
			jQuery(this).find('ul').each(function() {
				jQuery(this).stop();
				jQuery(this).fadeTo(300, 0, function() { jQuery(this).hide() });
			})
		}
	);

});