  <!-- Hide from old browsers
  message     = "Welcome to the Long Island White Sox Baseball Club Homepage.^" +
                "This site best viewed at 1024x768 or higher resolution.^" +
                "Sox flat in loss to Angels.^" +
                "Next game: Sunday, June 10th 10:00am vs. NY Pirates at Wantagh Park.^" +
                "Warmups begin at 9:00AM SHARP, wear Away uniforms!^" +
                "Check site daily for updates!^" +
                "^"
  scrollSpeed = 25
  lineDelay   = 3000

  // 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)
