
    poruka = "  Dobrodosli na www.digimax.rs ... ~" +
             "  prateca oprema za digitalne fotoaparate i kamere ...  ~" +
             "  Li-ion baterije, punjaci, stativi, torbe itd ...  ~" +
             "~"+
             "  kontakt telefon 024/672-035, 063/8651-888 ...  ~" +
             "  24000 Subotica, Srbija ~" +
             "~"
                
    scrollSpeed = 2
    lineDelay   = 1800
    txt         = ""

    function scrollText(pos) {
      if (poruka.charAt(pos) != '~') {
         txt    = txt + poruka.charAt(pos)
         status = txt
         pauze  = scrollSpeed
      }
      else {
         pauze = lineDelay
         txt   = ""
         if (pos == poruka.length-1) pos = -1
      }
      pos++
      setTimeout("scrollText('"+pos+"')",pauze)
    }
    scrollText(0)
