$(function(){
	$('div.editPannel a').click(function(){
		var comment = $(this).parents('div.commentItem');
		var commenttext = $('div.commentText',comment);
		if ($(this).attr('id') == 'editor') {
			$(commenttext).html('<textarea class="newtext" name="' + $(this).attr('name') + '">' + $(commenttext).text() + '</textarea>');
			$(this).attr('id', 'edit').text('ַבונודעט');
		} else if ($(this).attr('id') == 'edit') {
			$.post('/bitrix/templates/avanport/components/avanport/data.list.elements/comments/editor.php', {
				'act': $(this).attr('id'),
				'id': $(this).attr('name'),
				'text': $('textarea.newtext[name=' + $(this).attr('name') + ']').val()
			}, function(data){
				if (data) {
					window.location.reload();
				}
			});
		} else if ($(this).attr('id') == 'delete') {
			$.post('/bitrix/templates/avanport/components/avanport/data.list.elements/comments/editor.php', {
				'act': $(this).attr('id'),
				'id': $(this).attr('name'),
			}, function(data){
				if (data) {
					$(comment).hide();
				}
			});
		}	
		return false;
	});
});

