<!-- Portada del día

	var fotos = new Array();
		fotos[1] = "portada.jpg"; 
		fotos[2] = "portada2.jpg";

	var aleatorio = Math.round(Math.random() * 2);
	
	if (aleatorio == 0)
		{
			aleatorio = 1;
		}
	
	document.write("<img src='imagen/fotos/" + fotos[aleatorio] + "' alt='Portada del d&iacute;a' border='0' height='500'>");
// -->
