var max=0;
function textlist() {
  max=textlist.arguments.length;
  for (i=0; i<max; i++) this[i]=textlist.arguments[i];
    }
tl = new textlist(
  "Me aburro mucho, no tengo vida social...",
  "Por eso estoy todo el dia en la wiki de TD...",
  "Aunque aun me queda tiempo para hacer las practicas...",
  "Y tambien para IA1, ES1, AC1 y otras del estilo...",
  "Pero lo que mas me gusta es ponerme con AM...",
  "Me gusta tanto que ya no sé ni las veces que he repetido (todas por gusto!)...",
  "...",
  "¡Que alguien se apiade de mi y me pegue un tiro!"
  );

var x = 0; pos = 0;
var l = tl[0].length;
function textticker() {
  document.tickform.tickfield.value = tl[x].substring(0, pos) + "_";
  if(pos++ == l) {
    pos = 0;
    setTimeout("textticker()", 2000);
    if(++x == max) x = 0;
    l = tl[x].length;
    }
   else setTimeout("textticker()", 100);
  }

document.write('<form name="tickform"><p align="center"><textarea name="tickfield" rows="1" cols="55" style="background-color: rgb(0,0,0); color: rgb(255,255,255); cursor: default; font-family: Arial; font-size: 12px" wrap="virtual"></textarea></p></form>');
textticker();

