  <!-- 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     = "Welcome to Metro Detroit Foreclosures, your one stop foreclosure source^" +
                "To bookmark this site, please press CTRL+D in your keyboard^" +
                "Remember that this site updates daily so be sure to come back^" +
                "I hope you enjoy your stay, but more importantly, I hope you recommend it to your friends.^" +   
   "^" +
                              "^"
  scrollSpeed = 38
  lineDelay   = 1500
  // 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)
