/**
 * @author dominik1
 */
	$(document).ready(
	function()
	{
		$("ul#lista li").children("h2").click(
		function()
		{ 

			$(this).next("p").show("normal");
			$("ul#lista li h2").not(this).next("p:visible").hide("normal"); 

		}
		);
	}
	);