Hi, not sure if this is what you are getting at, but in order to swap the color back when the mouse moves away from the cell, you need to change the code which writes the following line out in default.asp:-
onMouseOver="mOvr(this,'#0099FF')" onMouseOut="mOut(this,'#0099FF')"
What's happening is that it's setting the same color for the cell when the mouse is moved away from the cell. If you find the code which writes this line in default.asp, and change the color value in the onMouseOut part to <%=strForumCellColor%> then it should work okay.
John