function avanzarChar() {
 	if (i == 0) document.getElementById("n" + n).style.height = "auto";
 	l = texto[n].length;
 	document.getElementById("n" + n).innerHTML = "<span>" + 
 texto[n].substring(0, x) + "</span>" + texto[n].substring(x, i) + 
 "<span>" + texto[n].substring(i, l+1) + "</span>";
 	i++;
 	if (i > 70) x++;
 	if (i == l+1) {
 		i = 0;
 		x = 0;
 		document.getElementById("n" + n).innerHTML = texto[n];
 		document.getElementById("n" + n).style.height = "0";
 		n++;
 		if (!texto[n]) n = 0;
 	}
 }
 
 function ultimoInit() { 	
 	n = 0;
 	texto = new Array();
 	while (document.getElementById("n" + n)) {
 		texto[n] = document.getElementById("n" + n).innerHTML;
 	n++;
 	}
 	n = 0;
 	i = 0;
 	x = 0;
 	if (texto[n]) setInterval("avanzarChar();", 150);
 }