Ok I had to alter the code a little - I couldnt figure out why it wasnt working until I realized that the way it was setup anyone not having an avatar was being skipped - I changed the code to this and it worked great.
Code:
<if condition="$post['usergroupid'] == 10">
<br><center><img src="http://www.site.com/forums/images/avatars/10.gif" border="0" /></center>
<else />
<if condition="$post['usergroupid'] == 33">
<br><center><img src="http://www.site.com/forums/images/avatars/33.gif" border="0" /></center>
</if>
<if condition="$show['avatar']">
<br><center><a href="member.php?$session[sessionurl]u=$post[userid]"><img src="$post[avatarurl]" $post[avwidth] $post[avheight] alt="<phrase 1="$post[username]">$vbphrase[xs_avatar]</phrase>" border="0" /></a></center>
</if>
Just one more question - I want to do the same thing in the memberinfo template - but I do not think I use the $post[usergroupid] variable - what is the equivalant to this in the member info?