  <!--
  // po nactenim DOM
  $(document).ready(function() {
    // nastaveni textu pro odkazy
    var showText="Více informací";
    var hideText="Skrýt informace";
  
    // pred kazdy blok, co ma byt skryt vlozi odkaz na zobrazeni
    $(".skryvaci").before('(<a href="#" class="skryvaciodkaz">'+showText+'</a>)');
  
    // skryje bloky s tridou "skryvaci"
    $('.skryvaci').hide();
  
    // na odkazy navaze funkci
    $('a.skryvaciodkaz').click(function() {
      if ($(this).html()==showText) { // zobrazit
        $(this).html(hideText);
        $(this).next('.skryvaci').slideDown('fast');
      } else { // skryt
        $(this).html(showText);
        $(this).next('.skryvaci').slideUp('slow');
      }
      return false; // odkazy nikam nevedou
    });
  });
  //-->
  
/* kod pouzit na zaklade: http://fruiko.posterous.com/jquery-prakticky-zobrazeni-a-skryti-odstavce */
