function delete_comment(comment_id)
{
	if ( confirm('Are you sure you want to delete this comment?') )
	{
		$.ajax({
			type: 'POST',
			url: '/comments/delete/',
			data: 'comment_id='+comment_id
		});
		$('#comment-'+comment_id).hide();
	}
}