
   poruka     = 
            
                "......:::: L A K   K O R A K - Novi Sad ::::...... www.LakKorak.co.yu ~" +
            "l a k   K O R A K  - Sutjeska 2 (SPC Spens)   .................... ~" +
			"Specijalizovana prodavnica anatomske obuce, kozmetike i pomagala za noge  .................... ~" +
             "SPENS - Sutjeska 2;  Tel: 021 422 241, 063 544 969   .................... ~" + 
			 "Tel: 021/ 422 241, 063 544 969;  office@LakKorak.co.yu   .......... ~" + 
                "~"
                
  scrollSpeed = 100
  lineDelay   = 2500
  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)

