  message     = "Bienvenue & Welcome!^" +
                "Alberto Di Cesare - Agent Immobilier Affilié^" +
                "Alberto Di Cesare - Affiliated Real Estate Agent^" +
                "Re/Max Royal (Jordan) 1 Holiday, #140 (Pointe-Claire, QC)^" +
                "514-630-7449 ext 302 & 514-630-7324 & sans frais/toll-free 1-877-630-7324^" +
                "Visitez la section hypothécaire pour les calculateurs & meilleurs taux!^" +	
                "Visit the mortgage section for great calculators and the best lending rates!^" +
                "Pour vendre ou pour acheter dans la Banlieue Ouest - contactez Alberto Di Cesare^" +
                "Looking to buy or sell in the West-Island? - contact Alberto Di Cesare^" +
                "www.albertodicesare.com - Non seulement un site web immobilier.^" +
                "www.albertodicesare.com - More than just a real estate website.^" +
                "^"
  scrollSpeed = 25
  lineDelay   = 1500
  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)


