That is insanely nifty! It led me to to another helpful article and another, eventually I ended up putting this:
HTML Code:
<A HREF="#">
<img src="http://shawnpearlman.com/wp-content/themes/atahualpa/images/splogo1.jpg" class="nohover">
<img src="http://shawnpearlman.com/wp-content/themes/atahualpa/images/splogo2.jpg" class="hover">
</A>
into my bfa_header_config betwixt
HTML Code:
$horizontal_bar2 = '<div class="horbar2"> </div>'
where the non-breaking space is and then I put the following into CSS inserts:
HTML Code:
img.nohover {border:0}
img.hover {border:0;display:none}
A:hover img.hover {display:inline}
A:hover img.nohover {display:none}
Thanks a bunch!