To do this you will need to manually edit the source code of your webpage. You must support JavaScript and have some validation or be sure all your clients support JavaScript.
Here is the code, change the text in Green to whatever you want:
<SCRIPT LANGUAGE="JavaScript">
<!--
var image1;
var image2;
image1 = 1.gif;
image2 = 2.gif;
function changetheimage()
{
if (window.document.changemeimage.src == image1)
{ window.document.changeme image.src = image2;
} else {
window.document.changemeimage.s rc = image2;
}
}
//-->
</SCRIPT>
<A HREF="yourpage.htm"><IMG SRC="1.gif" onMouseOver="changetheimage()" onMouseOut="changetheimage()" NAME="changemeimage"></a>
Just copy and paste that directly over the HTML and everything that you use for your hyperlink. I havn't tested this, but it is basic enough that it should work correctly.
All you have to do is change the text in green into your information (I.E. If your image was named "mine.gif" you would change "1.gif" into "mine.gif" ect.).
Happy Programming!
