/**************************************************************************/
var texto = '.   .  ..::  ESCUELA MUNICIPAL VILLANUEVA DE LA REINA  ::.  .   .';
var pos = 0;

function textoEstado(){

   pos = pos + 1
   textoActual = texto.substring(0,pos)
   window.status = textoActual
   if (pos == texto.length){
      pos = 0
      setTimeout("textoEstado()",1500)
   } else{
      setTimeout("textoEstado()",100)
   }

}

/*************************************************************************/
