In the following example, we use a standard image tag set to an image, change it on mouse over, then set it back on mouse out.
<img id="Image1" src="i_search.gif"
onmouseover="document.images['Image1'].src='i_coat.gif';"
onmouseout="document.images['Image1'].src='i_search.gif';">