	function galeria_mini(mostrar, oc1, oc2, oc3){
		Effect.Appear(mostrar, { duration: 1.0 });
		$(mostrar + '_link').style.backgroundColor = '#000000';
		if($(oc1)){	
			$(oc1).style.display = 'none';
			$(oc1 + '_link').style.backgroundColor = '#333333';
		}
		if($(oc2)){	
			$(oc2).style.display = 'none';
			$(oc2 + '_link').style.backgroundColor = '#333333';
		}
		if($(oc3)){	
			$(oc3).style.display = 'none';
			$(oc3 + '_link').style.backgroundColor = '#333333';
		}
		
	}
	
	function galeria_mini2(mostrar, numero){
		Effect.Appear('foto_' + mostrar, { duration: 1.0 });
		Effect.Appear('texto_' + mostrar, { duration: 1.0 });
		$('foto_' + mostrar + '_link').style.backgroundColor = '#000000';
		var f = 1;
		for(f=1;f<=numero;f++){
			if(f!=mostrar){
				$('foto_' + f).style.display = 'none';
				$('texto_' + f).style.display = 'none';
				$('foto_' + f + '_link').style.backgroundColor = '#333333';
			}
		}			
	}
