Here is the ideal way to do it, following the way Snitz does. Using inc_iconfiles.asp and inc_header.asp:
1) Upload the image pmalert.gif to your images folder
2) In inc_iconfiles.asp - look for:
Const strIconPmprivatemessage = "icon_privatemessage.gif|20|24"
After that, add:
Const strIconPMalert = "icon_pmalert.gif|5|5"
3) In inc_header.asp - look for:
if pmcount > 0 then Response.Write "(<font color=""" & strActiveLinkColor & """><b>" & pmcount & " New</b></font>)"
REPLACE IT WITH:
if pmcount > 0 then Response.Write "(<font color=""" & strActiveLinkColor & """><b>" & pmcount & "</b></font>) " & getCurrentIcon(strIconPMalert,"PM Alert","hspace=""0""")