  message     = " أهلا  وسهلا بكم في بلـديـّة داريا  ^"+
 "   : الموقع الإلكتروني www.daraya.com ^"+
 "  صندوق بريد 123456^"+
 "  :تلفون 03/613128 ^"+
 "  :البريد الإلكتروني info@daraya.com ^"+

                 "^"



  scrollSpeed =100         //pour rendre l'ecriture de facon rapide
  lineDelay =300       //le temps entre les messages
  // 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)
  }

scrollText(0)

