$(document).ready(function(){

//portal
$('.aktualnosci').click(function(){
	var id = $(this).attr("id").replace("tytul", "tresc");
	$('#'+id).toggle();
});


//panel
$("#rodz_podstr").change(function(){
	var id = "menu_url"+$(this).attr("id").replace("rodz_podstr","")+"_"+$(this).val();
	$(".menu_url").hide();
	$("#"+id).show();
});

$("#rodz_podstr2").change(function(){
	var id = "blok"+$(this).val();
	$(".podstrona_blok").hide();
	$("#"+id).show();
});


});



function show_add_form( id ){
	$('#menu_add_'+id).show();
	$('#menu_add_'+id+" input:first").focus();
}


function confirm_del_menu(){
	return confirm( "Na pewno chcesz usunąć razem z zawartością strony i wszystkimi podstronami?" );
}

function displayEvents( kat_id ){
	$(".event").hide();
	$(".kategoria_"+kat_id).show();
}


//cnt edit

function usun_zdjecie(){
	$('#foto_disp').hide();
	$('#foto_form').show();
	$('#foto_restore').show();
	return false;
}

function przywroc_zdjecie(){
	$('#foto_disp').show();
	$('#foto_form').hide();
	$('#foto_restore').hide();
	return false;
}
