$(document).ready(function()
  {
    $('.ref').click(function(){
      var src = $(this).children('div').children('img').attr('alt');
      var popis = $(this).children('.popis').html();
      $("#velka").attr('src', './_ref/' + src + '.png');
      $("#popis").html(popis);
      return false;
    });

    // odkazy s http do noveho okna
    $("a:[href^=http://]").each(function() {
      $(this).addClass("out-link");
      $(this).attr('title', $(this).attr('title') + " :: Odkaz do nového okna");
      $(this).attr({
        target: "_blank"
      });
    });

    $('#o-mne').hide(500);
 
    $('#zobrazit').click(function(){
      $('#o-mne').show(500);
      $('#zobrazit').hide(500);
      return false;
    });

    $('#skryt').click(function(){
      $('#o-mne').hide(500);
      $('#zobrazit').show(500);
      return false;
    });

  });

