just create a new usergroup and then in index.php (or online.php depends on where you want to have it)
find:
PHP Code:
if ($loggedin['usergroupid'] == 6 and $highlightadmin) {
$username = "<b><i>$loggedin[username]</i></b>";
and change to:
PHP Code:
if (in_array($loggedin['usergroupid'], array(6,XX)) and $highlightadmin) {
$username = "<b><i>$loggedin[username]</i></b>";
replace xx with the new usergroupid