//inicializace promenych
var posuvnyText;
var sirka;
var posuvnyText_timer;
var aktualniPozice = 0;

function posuvnyText_posun() {
  aktualniPozice = aktualniPozice - 1;
  posuvnyText.style.marginLeft = aktualniPozice+'px';
  if (aktualniPozice < -(posuvnyText.offsetWidth))
    aktualniPozice = sirka;
}
function posuvnyText_stop() {
  clearInterval(posuvnyText_timer);
}
function posuvnyText_start() {
  posuvnyText = document.getElementById("text");
  sirka = document.getElementById("posuvnyText").offsetWidth;
  if (aktualniPozice == 0)
    aktualniPozice = sirka;
  posuvnyText_timer = window.setInterval("posuvnyText_posun()", 10);
}

