var bl = 0;
var bw = 0;
var stop = false;

window.onload = function() {
  var lt = document.getElementById('loga_tab');
  lt.onmouseover = function() { stop = true; }
  lt.onmouseout = function() { stop = false; }
  bw = Math.round(lt.offsetWidth / 2);
  setTimeout('scroll_loga()', 2000);
}

function scroll_loga() {
  if (stop) {
    setTimeout('scroll_loga()', 500);
    return;
  }
  var orloj = document.getElementById('orloj');
  bl -= 1;
  if (-bl == bw) bl = 0;
  orloj.style.left = bl;
  setTimeout('scroll_loga()', 15);
}


