  <!-- Hide from old browsers



  message     = "Welcome to ModelsDesired.com ^" +

                "Your new Modeling Portfolio Company^" +
                "ModelsDesired.com is the only company in the world^" +
                "that offers customized animated portfolios^" +
                "with a musical background.^" +
                "In essence,^" +
                "your photographs will be presented ^" +
                "in a classy, professional manner^" +
                "over the web!^" +
                "^"
  scrollSpeed = 30
  lineDelay   = 2000

  // 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)