$(document).ready(
      function(){
          FadeIn(); 
  });    
    
function FadeIn()
{
    $(".prostredek").hide();
    $(".prostredek").fadeIn("slow");
    $(".prostredek2").hide();
    $(".prostredek2").fadeIn("slow");
    $("#novakat1").hide();
}
            
function zobraz(id) {
    document.getElementById(id).style.display = 'block';
}

function schovej(id) {
    document.getElementById(id).style.display = 'none';
}

