	
	function saveCategory(categoryId) {
		cnazwa = $('#nazwa'+categoryId).attr('value');
		cparentCategoryId = $("select[name='parentCategoryId"+categoryId+"']").attr('value');
		copis = $('#opis'+categoryId).attr('value');
		cmetaKeywords = $('#metaKeywords'+categoryId).attr('value');
		$.post(base_url+'articles/ccategories/saveCategory', { 	nazwa: cnazwa, 
									parentCategoryId: cparentCategoryId, 
									opis: copis, 
									metaKeywords: cmetaKeywords, 
									id: categoryId 
								     },
			function(data){
				alert('Zapisano kategorię "'+cnazwa+'"')
				console.log(data); // query
			}, "json");
	}

	function updateChange(field,value,id) {
		$.post(base_url+'changes/updateChange', { 		field: field, 
									value: value,
									id:id
								},
			function(data){
				alert('Zapisano zmianę "'+id+'"')
				console.log(data); // query
			}, "json");
	}

