function limpiar(){
	var i;
	var oracion;
	var texto;
	i=1;
	while (i<6) {
		oracion="oracionPortada"+i;
		texto="textoPortada"+i;
		oracionObj=document.getElementById(oracion);
		textoObj=document.getElementById(texto);
		if (textoObj){	textoObj.style.display="none";}
		if (oracionObj)	{	oracionObj.style.color="#666666";	oracionObj.style.fontWeight="";	}
		i++
	}
}
function mostrar(id) {
	var texto;
	var oracion;	
	texto="textoPortada"+id;
	oracion="oracionPortada"+id;
	textoObj=document.getElementById(texto);
	oracionObj=document.getElementById(oracion);
	textoObj.style.display="block"
	oracionObj.style.color="#30497A"
	oracionObj.style.fontWeight="bold"	
}


