$(function() {
	$(".click").click(function(){
		var comment_id=this.id.split("-");
		edit_comment(comment_id[1]);
	});
		
	$(".click").hover(
	function(){
		var comment_id=this.id.split("-");
		$('#click_to_edit_'+comment_id[1]).html("Click on the comment to edit").fadeIn(1000);
	},
	function(){
		var comment_id=this.id.split("-");
		$('#click_to_edit_'+comment_id[1]).html("&nbsp;").fadeIn(1000);
	}
	);
});

function edit_comment(comment_id)
{
	$('#data-'+comment_id).toggle();
	$('#data-'+comment_id+'-form').toggle();	
}

function update_edited_time(comment_id)
{
	$.ajax({
		type: "GET",
		url: "edit.php",
		data: "comment_id="+comment_id+
			"&get_edit_time=1",
		success: function(msg){
			$('#lastEdit-'+comment_id).html(msg);
		}
	});
}

function edit_for_sure(comment_id)
{
	$.ajax({
		type: "POST",
		url: "edit.php",
		data: "comment_id="+comment_id+
			"&comment_body="+$('#textarea-'+comment_id).val(),
		success: function(msg){
			$('#textarea-'+comment_id).html(msg);
			$('#data-'+comment_id).html(msg);
			$('#data-'+comment_id+'-form').toggle();
			$('#data-'+comment_id).show().fadeIn(1000);
			update_edited_time(comment_id);
		}
	});
}