If you are referring to adding an icon in front of the photoalbum section in default.asp.  A couple of changes/additions are needed.
1) inc_iconfiles.asp
2) inc_photoalbum.asp
-- First upload your camera icon to your forum images folder (name it: icon_camera.gif make note of the height and width)
In inc_iconfiles.asp FIND:
Const strIconYahoo = "icon_yahoo.gif|20|24"
Immediately after that add: (|xx|xx = width|height of your uploaded icon)
Const strIconCamera = "icon_camera.gif|xx|xx"
In inc_photoalbum.asp FIND LINE 15:
		""" bgcolor=""" & strForumCellColor & """> </td>"& vbNewline & _
Replace LINE 15 with the following LINE:
		""" bgcolor=""" & strForumCellColor & """>" & getCurrentIcon(strIconCamera,"","align=""absmiddle""") & "</td>"& vbNewline & _
That should be all there is to it.  If that wasn't what you were referring to, I'm sorry. 