$(document).ready(function($) {
   $('p.open').live('click',function() {
      $(this).attr("class", "close");
      var adr_name = $(this).attr('name');
      var adr_zdroj = $(this).attr('zdroj');
      $(this).next().load('tree/nacti_adr.php',{adresar:adr_name,zdroj:adr_zdroj});
      return false;
   });
   
   $('p.close').live('click',function() {
      $(this).attr("class", "open");
      $(this).next().children().remove();
      return false;
   });
});
