$(document).ready(function(){
	$("div#sidebar div.slide div.inner").each(function(i, item){
		var blockName = $(item).parent().attr("id");
		
		if ($.cookie(blockName + '_visibility') == 'hidden') {
			$(item).hide();
		}
	});
	
	$("div#sidebar div.slide span.h").attr({title: 'Blokk eltüntetése/megjelenítése'});
	
	$("div#sidebar div.slide span.h").click(function(){
		var blockName = $(this).parent().attr("id");
		
		$(this).parent().children("div.inner").slideToggle("normal", function(){
			if ($(this).is(":hidden")) {
				$.cookie(blockName + '_visibility', 'hidden', {path: '/', expires: 30});
			} else {
				$.cookie(blockName + '_visibility', null, {path: '/', expires: 30})
			}
		});
	});
	
	$(".donothing").click(function(event){
		event.preventDefault();
	});
	
	$(".printpage").click(function(){
		window.print();
	});
	
	$("div#searchbarb a").click(function(){
		$("form#form_kereso").submit();
	});
	
	
	$(".lightbox").lightBox();
});

