$(document).ready(function(){
	$('.sousMenu').hide();

	$('.sousMenu').hover (
		function () { $(this).stop().show(); },
		function () { $(this).stop().hide(); }
	);

	$('#menuPrincipal > li a').hover( 
		function () { $(this).next("ul:hidden").stop().show(); },
		function () { $(this).next("ul:visible").stop().hide(); }
	);
});
