﻿$('#menuPrincipal li:has(ul)').bind('mouseenter', function() 
{ 
	if (!$(this).find('ul').is(":animated")) 
		$('.subMenu').show("slow");
})
.bind('mouseleave', function() 
{ 
	$('.subMenu').hide("slow");
})
