$(document).ready(
	function() {
		$('#add_tag_old').submit(function() {
			//$.growl('Dodawanie tagu', 'W trakcie...');
			
			var str = $(this).serialize();
			$.ajax({
				type: "POST",
				url: "/ajax/addTag",
				data: str,
				success: function(msg){
					if (msg == 'ok') { 
						$.growl('Dodawanie tagu', 'Dodano');
					} else	$.growl('Wystapił błąd', msg);
				}
			});
			return false;
		});
		
		
		$('.delete_comment').click(function() {
			if (confirm('Czy jesteś pewien, że chcesz usunąć komentarz?')) {
				var that = $(this);
				var id = that.parent().siblings("input[name='coid']").val();
				$.ajax({
					type: "POST",
					url: "/ajax/deleteComment",
					data: "commentId="+id,
					success: function(msg){
						if (msg == 'ok') { 
							that.parents(".boxComment").remove('');
							$.growl('Usuwanie komentarza', 'Usunięto');
						} else	$.growl('Wystapił błąd', msg);
					}
				});
			}
			return false;
		});
	});