
$(document).ready(function(){   

  $("h3.nadpisik").ready(function() {
    $(this).next("div").css("display", "none");
    $(this).css("cursor", "hand", "pointer");
	});

  $("h3.nadpisik").click(function() {
    $(this).next("div").toggle();
	});
  
});

