$(document).ready(function(){

	$('.confotos').hover(function(){
		return;
	 },function() {
		$(".sintexto").show();
		$(".contexto").hide();
	});
	
	$(".sintexto").hover(function(){
		$(".sintexto").show();
		$(".contexto").hide();
		var id = $(this).attr('id');
		$('#Txt'+id).show();
		$(this).hide();
	},function(){
		return;
	});
	 
	$(".contexto").hover(function(){
		return;
	},function(){
		var id = $(this).attr('id');
		id = id.slice(3); 
		$('#'+id).show();
		$(this).hide();
	});

});