<?php
/*
Plugin Name: Mark Offical Comments
Plugin URI: http://www.kackreiz.net
Description: Wraps the result of <code>(get_)comment_author_link()</code> in <code>&lt;span class=&quot;official_comment&quot;&gt;...&lt;/span&gt;</code> if the comment was posted by a member of the site while he was logged in, indicating the comment as an &quot;official&quot; comment.
Version: 1.0
Author: Jan
Author URI: http://www.kackreiz.net
*/

function mark_official_comments($link) {
    global 
$comment;
    if (
$comment->user_id) return "<span class=\"official_comment\">$link</span>";
    else return 
$link;
}

add_filter('get_comment_author_link''mark_official_comments');

?>