maximo = 107;
lineas = ahora.length;
temp = "";
temp2 = "";
linea = 0;
letra = 0;

function animate()
{
      if (lineas > 0)
      {
        if (linea == lineas) linea = 0
        temp += ahora[linea].charAt(letra);
        if (temp.length > maximo)
        {
          desde = temp.length - maximo;
          contenido = temp.substring(desde, temp.length);  
        } else contenido = temp;
        document.getElementById('ahora').innerHTML = '&nbsp;&nbsp;' + contenido;
        letra++;
        if (temp.length == ahora[linea].length & linea != lineas)
        {
	   linea++;
           temp = "";
	   letra = 0;
           setTimeout ("animate()", 2500);
        }
        else setTimeout ("animate()", 100);
      }
}

