Well to add more like I have the GFX Staff, and Elite Member thing you should have a code similar to this or you can post yours up and I will tell you how to add:
CODE
<script>/*
Colors Key in Users Stats Box v1.2
Created by iFusion
*/
var irGroup = []
irGroup[0]=["Administration" , "COLOR" , "filter:glow(color=COLOR, strength=4); font-size: 12px; height: 2px;"]
var usersInput=""
for (i=0;i<irGroup.length;i++){
usersInput+="[<font style='" + irGroup[i][2] + "' color='" + irGroup[i][1] + "'>" + irGroup[i][0] + "</font>] "
}
var tCell = document.getElementsByTagName('TD')
for (i=0;i<tCell.length;i++){
if (tCell[i].width=="95%" && tCell[i].innerHTML.match(/anonymous members/i)){
tCell[i].getElementsByTagName('DIV')[0].innerHTML+="<br /><br />Key: " + usersInput
}}
</script>
To add more just add this:
QUOTE
irGroup[0]=["GROUP NAME" , "COLOR" , "filter:glow(color=COLOR, strength=4); font-size: 12px; height: 2px;"]
Right after this:
QUOTE
irGroup[0]=["Administration" , "COLOR" , "filter:glow(color=COLOR, strength=4); font-size: 12px; height: 2px;"]
Change the yellow 0 to a 1 because you have added another one up, and then to add more and more just keep copying that and changing the numbers in the bracket
[ ]