	
	var comment_id = 0;
	
	function delete_comment(id){
	
		if( confirm('Уверены, что хотите удалить?') ){
		
			r_ajax('deletecomment',{
				'comment_id': id,
				'page_id': $('#page_id').val()
			},function (json){
				$('#comments_list').html(json.resp);
				r_message('Комментарий успешно удален');
			});
		}
		return false;
	}
	
	function send_comment(){
		
		r_ajax('sendcomment',{
			'page_id': $('#page_id').val(),
			'content': $('#f_content').html(),
			'comments_parent_id': comment_id
		},function(json){
			$('#comments_list').html(json.resp);
			r_message('Комментарий успешно отправлен');
			window.location = '#comm' + json.insert_id;
			$('#f_content').html('');
		});
	}
	
	function show_comments_form(id){
	
		comment_id = id;
		
		$('#reply_form').empty();
		$('.reply_editor').empty();
		
		$('#reply' + id).html('<div id="reply_form"><textarea style="height: 80px; width: 100%;" class="tinymce" id="f_content"></textarea><input type="button" onclick="javascript: send_comment();" value="Отправить комментарий" /></div>');
		
		$('#f_content').tinymce({		
			script_url : '/js/tiny_mce/tiny_mce.js',
			theme : 'advanced',
			theme_advanced_buttons1 : 'bold,italic,underline,separator,undo,redo,link,unlink,separator,emotions',
			theme_advanced_buttons2 : "",
			theme_advanced_buttons3 : "",
			theme_advanced_toolbar_location : "top",
			theme_advanced_toolbar_align : "left",
			theme_advanced_statusbar_location : "bottom",
			theme_advanced_resizing : false,
			content_css : "/css/tinymce.css",
			plugins:  "emotions,safari",
			language : "ru",
			convert_urls : false
		});
	}

	$(document).ready(function(){
		
		$('#f_content').tinymce({		
			script_url : '/js/tiny_mce/tiny_mce.js',
			theme : 'advanced',
			theme_advanced_buttons1 : 'bold,italic,underline,separator,undo,redo,link,unlink,separator,emotions',
			theme_advanced_buttons2 : "",
			theme_advanced_buttons3 : "",
			theme_advanced_toolbar_location : "top",
			theme_advanced_toolbar_align : "left",
			theme_advanced_statusbar_location : "bottom",
			theme_advanced_resizing : false,
			content_css : "/css/tinymce.css",
			plugins:  "emotions,safari",
			language : "ru",
			convert_urls : false
		});
	});
