$(function() {
        $('#fotogalerie a').lightBox();
});

function zobraz(id){ 
      $(document.body).ready(function () {
            
        for(stare_id = 1; stare_id <= 5; stare_id++){
          if(stare_id != id){
            $("#fotografie_"+stare_id).css("display", "none"); 
          }
        }
   
           
        $("#fotografie_"+id).fadeIn("slow");         
        });
}
