﻿


var beziciText = "*** Vítejte ve Vodním světě Kolín ***";

function posunText()
{
   beziciText = beziciText.substring(1, beziciText.lenght) + beziciText.substring(0,1);
   zobraz = beziciText.substring(0,120);
   document.all.beziciText.innerText = zobraz;
   setTimeout("posunText()",200);
}

function setBeziciText(text)
{
   beziciText = text;
}

      
