  <!-- Hide from old browsers

  // All you have to do is put another text in the variable message.
  // Don't forget to break all lines with a ^
  // When you do not place a ^ at the end of all the message, the
  // message will not repeat

  message     = "ยินดีต้อนรับเข้าสู่ เว็บไทยดีดี จัดทำโดย คนไทยเพื่อคนไทย (ร่วมส่งบทความได้ที่ webmaster@webthaidd.com)^" +
                //"ประกาศเว็บไทยดีดี รับสมัครงานในตำแหน่ง Web Designer 1 ตำแหน่ง^" +
                //"ประกาศเว็บไทยดีดี รับสมัครงานในตำแหน่ง web programer 2 ตำแหน่ง^" +
                //"บริการจดโดเมนเนม เว็บไซด์ .Com, .Net, .Org เพียง 550 บาท / ปี^" +
                //"สอบถามข้อมูลบริการดีดี Tel. 0-2704-9100, Fax. 0-2704-7596^" +
                "^"
  scrollSpeed = 25
  lineDelay   = 3600

  // Do not change the text below //

  txt         = ""

  function scrollText(pos) {
    if (message.charAt(pos) != '^') {
      txt    = txt + message.charAt(pos)
      status = txt
      pauze  = scrollSpeed
    }
    else {
      pauze = lineDelay
      txt   = ""
      if (pos == message.length-1) pos = -1
    }
    pos++
    setTimeout("scrollText('"+pos+"')",pauze)
  }

  // Unhide -->
scrollText(0)