/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */


$(document).ready(function()
{
	$('.cela_zprava').hide();
	$(".newsitem").click(function()
	{
		$(this).parent().next().show();
		$(this).parent().hide();
	});


});


