var tl = new Array(
 "The wonderful thing about Tiggers",
 "Is Tiggers are wonderful things,",
 "Their tops are made out of rubber",
 "Their bottoms are made out of springs",
 "They're bouncy, trouncy, flouncy, pouncy",
 "Fun, fun, fun, fun, fun",
 "But the most wonderful thing about Tiggers",
 "Is I'm the only one.",
 "",
 "The wonderful thing about Tiggers",
 "Is Tiggers are wonderful chaps",
 "They're loaded with vim and with vigor",
 "They love to leap in your laps",
 "They're bouncy, trouncy, flouncy pouncy",
 "Fun, fun, fun, fun, fun",
 "But the most wonderful thing about Tiggers",
 "Is I'm the only one.",
 "",
 "Tiggers are wonderful fellahs",
 "Tiggers are awfully sweet",
 "Everyone elses is jealous",
 "And thats why I repeat.",
 "The wonderful thing about Tiggers",
 "Is Tiggers are wonderful things",
 "Their tops are made out of rubber",
 "Their bottoms are made out of springs",
 "They're bouncy, trouncy, flouncy, pouncy",
 "Fun, fun, fun, fun, fun",
 "But the most wonderful thing about Tiggers",
 "Is I'm the only one",
 "Yes, I'm the only one",
 "*Grrrrrr...*"
);
var speed=60;
var index=0; text_pos=0;
var str_length=tl[0].length;
var contents, row;

function type_text()
{
  contents='';
  row=Math.max(0,index-7);
  while(row<index)
    contents += tl[row++] + '\r\n';
  document.forms[0].elements[0].value = contents + tl[index].substring(0,text_pos) + "_";
  if(text_pos++==str_length)
  {
    text_pos=0;
    index++;
    if(index!=tl.length)
    {
      str_length=tl[index].length;
      setTimeout("type_text()",1500);
    }
  } else
    setTimeout("type_text()",speed);

}

