
		
		 	$("#elemento_1").hover(  function() {muestra(1);}, function() { oculta(1); } );
			$("#elemento_2").hover(  function() {muestra(2);}, function() { oculta(2); } );
			$("#elemento_3").hover(  function() {muestra(3);}, function() { oculta(3); } );
			$("#elemento_4").hover(  function() {muestra(4);}, function() { oculta(4); } );
			$("#elemento_5").hover(  function() {muestra(5);}, function() { oculta(5); } );
			$("#elemento_6").hover(  function() {muestra(6);}, function() { oculta(6); } );
			$("#elemento_7").hover(  function() {muestra(7);}, function() { oculta(7); } );
			
			$('#imagen_1').fadeTo(0,0, function(){$('#imagen_1').show()});
			$('#imagen_2').fadeTo(0,0, function(){$('#imagen_2').show()});
			$('#imagen_3').fadeTo(0,0, function(){$('#imagen_3').show()});
			$('#imagen_4').fadeTo(0,0, function(){$('#imagen_4').show()});
			$('#imagen_5').fadeTo(0,0, function(){$('#imagen_5').show()});
			$('#imagen_6').fadeTo(0,0, function(){$('#imagen_6').show()});
			$('#imagen_7').fadeTo(0,0, function(){$('#imagen_7').show()});
			
		 	function muestra(id)
		 	
			
			{
			
				$('#imagen_'+id).fadeTo(400,1);
				$('#elemento_'+id).removeClass('secreto_'+id+'_out');
				$('#elemento_'+id).addClass('secreto_'+id);
				$('#elemento_'+id).addClass('over');
			}
			
			function oculta(id)
			{
			
				$('#imagen_'+id).fadeTo(400,0);
				$('#elemento_'+id).removeClass('secreto_'+id);
				$('#elemento_'+id).addClass('secreto_'+id+'_out');
				$('#elemento_'+id).removeClass('over');
			}

