function cancelEditMode(comment_id)
{
	jQuery('#edit_form_'+comment_id).hide();
	jQuery('#b_'+comment_id).show();
}

function init_rte(where)
{
	jQuery(where).markItUp(myBbcodeSettings);
}

function comments_init()
{
	jQuery('#fbody').markItUp(myBbcodeSettings);

//	jQuery('.comment.me .comment_body').click(function(){
//		//jQuery(this).css('background', '#d00');
//	});
}

jQuery(document).ready(function(){
	comments_init();
});