<!--
function zobrazit(id){
     document.getElementById('box'+id).slideDown();
     document.getElementById('obrA'+id).style.display = 'none';
     document.getElementById('obrB'+id).style.display = 'block';
}
function schovaj(id){
     document.getElementById('box'+id).slideUp();
     document.getElementById('obrA'+id).style.display = 'block';
     document.getElementById('obrB'+id).style.display = 'none';
}


function schovajpopup(){
$('#popup1').fadeOut('fast', function() {});
$('#popup2').fadeOut('fast', function() {});
}

function pocitadlo_run()

{

  var poc = document.getElementById('pocitadlo');

  var cakaj = 7;

  var timer = window.setInterval( function() {

    poc.innerHTML = cakaj;

    if (cakaj==0)

    {

      clearInterval(timer);

      $('#popup1').fadeOut('fast', function() {});
$('#popup2').fadeOut('fast', function() {});

      return;

    }

    cakaj--;

  }, 1000);

}


function infookno()

{
$('#info1').fadeIn('slow', function() {});


  var cakaj = 4;

  var timer = window.setInterval( function() {



    if (cakaj==0)

    {

      clearInterval(timer);

      $('#info1').fadeOut('slow', function() {});


      return;

    }

    cakaj--;

  }, 1000);

}

// -->





