$(document).ready(function() {
	$('body a').click(function(){
		$(this).blur();
	});
		
	$('div.referenciak h3').click(function() {
		$(this).next('div.lenyilo').slideToggle(300);
	});

});

