$(document).ready(function(){
	$('.menuEventos')
		.hover(
			function(){
				$('ul', this).show();
			},
			function(){
				$('ul', this).hide();
			}
		)
});
