$(function(){

	$('nav .item').each(function(index){
		if ( $(this).children('.texto').length > 0 )
		{
			$(this).css('cursor','pointer');
		}
	});

	$('nav .item').mouseover(function(){
		$('.texto').hide();
		$(this).children('.texto').show();
	});

	$('nav .item').mouseleave(function(){
		$(this).children('.texto').hide();
	});

});
