		$(document).ready(function() {
			$(".novinkatelo2").hide();
			$(".novinkacontrol").click(function(event) {
					event.preventDefault();
					var str = $(this).text();
				 	$(this).prev(".novinkatelo2").toggle(); 
				 	if (str=="zobrazit kompletní znění") {
						$(this).text("skrýt kompletní znění");
  				} else   {
						$(this).text("zobrazit kompletní znění");
  				}
			});
		});	
