﻿var tl=new Array(

"Welcome to S-R! ^_~",
"",
"* Recent Updates:",
"",
"  2009.12.11 10:00.EST-05 ~ Anime | Series | Naruto Shippuuden",
"  2009.12.09 21:00.EST-05 ~ Anime | Specials | Death Note R2: L's Successors (Dual-Audio)",
"  2009.12.07 15:00.EST-05 ~ Anime | Series | InuYasha: The Final Act",
"  2009.11.13 12:40.EST-05 ~ Anime | Movies | Naruto Shippuuden: The Movie (Dual-Audio)",
"  2009.11.05 04:50.EST-05 ~ Game | PC | Touhou Project (TH01-12.3)",
"  2009.11.02 18:18.EST-05 ~ Anime | PVs | Touhou - Bad Apple!!",
"  2009.11.01 02:20.EST-05 ~ Anime | Specials | Death Note R1: Visions of God (Dual-Audio)",
"  2009.10.25 09:37.EST-05 ~ Anime | Movies | Bleach Movie 2: The DiamondDust Rebellion (Dual-Audio)",
"  2009.10.21 01:55.EST-05 ~ Anime | Movies | Bleach Movie 3: Fade to Black",
""
);

var speed=69;
var index=0; text_pos=0;
var str_length=tl[0].length;
var contents, row;

function type_text()
{
  contents='';
  row=Math.max(0,index-15);
  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);
}