var txt = new Array();
txt[1]="ようこそ【超初心者のホームページ作成】へ";
txt[2]="ここには様々なサンプルがあります。";
txt[3]="使えそうなものがあったらどんどん使用してください。";

mmax = 3; //メッセージ行数
ispeed = 50; //表示スピード
ospeed = 1; //消去スピード
ddelay = 1500; //表示時間（ミリ秒）
hdelay = 1000; //非表示時間（ミリ秒）
wdelay = 4000; //待機時間（ミリ秒）
slide_set();

function slide_set(){
  midx = 1;
  strcnt0 = 0;
  setTimeout("expand_in()", 0);
}

function expand_in(){
  txt0 = txt[midx].substr(0, strcnt0++);
  document.frm1.txt1.value = txt0;

  if (strcnt0 >= txt[midx].length+1) {
    strcnt0 = 0;
    setTimeout("slide_out()", ddelay);
  }else{
    setTimeout("expand_in()", ispeed);
  }
}

function slide_out(){
  txt0 = txt[midx].substr(strcnt0++);
  document.frm1.txt1.value = txt0;

  if (strcnt0 >= txt[midx].length+1) {
    midx++;if (midx > mmax) { midx = 1; }
    strcnt0 = 0;
    if (midx == 1) {
      setTimeout("expand_in()", wdelay);
    }else{
      setTimeout("expand_in()", hdelay);
    }
  }else{
    setTimeout("slide_out()", ospeed);
  }
}

