<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=us-ascii">
<TITLE>Message</TITLE>

<META content="MSHTML 6.00.2900.2912" name=GENERATOR></HEAD>
<BODY><!-- Converted from text/plain format -->
<P><FONT face=Arial size=2>Ken,<BR><BR>Thanks for the snippet.&nbsp; It was so 
short even I could understand the code.<BR><BR>Here's a snippet&nbsp;to modify 
the filename on mouseover / mouseout for pngs in IE or whatever browser.&nbsp; 
IT checks for the filter style and if present, modifies that attribute, not the 
src attribute.</FONT></P>
<P><FONT face=Arial size=2><BR>function pngHover(event) {<BR>&nbsp;if(event.type 
== 'mouseover')&nbsp; {<BR>&nbsp;&nbsp;if(this.style.filter) // add -hover to 
filename on mouseover<BR>&nbsp;&nbsp;&nbsp;this.style.filter = 
this.style.filter.replace('.png', 
'-hover.png');<BR>&nbsp;&nbsp;else<BR>&nbsp;&nbsp;&nbsp;this.src = 
this.src.replace('.png', '-hover.png');<BR>&nbsp;} else 
{<BR>&nbsp;&nbsp;if(this.style.filter) // remove -hover from filename on 
mouseout<BR>&nbsp;&nbsp;&nbsp;this.style.filter = 
this.style.filter.replace('-hover.png', 
'.png');<BR>&nbsp;&nbsp;else<BR>&nbsp;&nbsp;&nbsp;this.src = 
this.src.replace('-hover.png', '.png');<BR>&nbsp;}<BR>}<BR></P></FONT>
<P>&nbsp;</P></BODY></HTML>