Can you please post the code you used?
Header :
<script src="/jquery.js"></script>
Footer :
<script>
function color_group_name() {
//Created by Agent Moose (smcodes.smfforfree3.com)
var group = new Array()
group[group.length] = ["Webmaster","#FF8040"]
group[group.length] = ["Senior Administrators","#FF00FF"]
group[group.length] = ["Hotel Administrators","#FF0080"]
group[group.length] = ["Senior Moderator","#9AFEFF"]
group[group.length] = ["Moderators","#8EEBEC"]
group[group.length] = ["Trial Moderator","#78c7c7"]
group[group.length] = ["Hobba","Gold"]
for(f=0;f<group.length;f++){
$("div.smalltext").each(function() {
if(this.innerHTML.match(group[f][0])){
this.innerHTML = this.innerHTML.replace(group[f][0],"<font color='" + group[f][1] + "'>" + group[f][0] + "</font>");
};});};}
color_group_name();
</script>