What I would do will be something basic along the line...
Before </head> or in your external .js file.
HTML Code:
<script type="text/javascript">
function hoverChange(imgID)
{
document.getElementById(imgID).src = 'images/img_change.gif';
}
function hoverOut(imgID)
{
document.getElementById(imgID).src = 'images/img_default.gif';
}
</script>
</head>
Then on the anchor tag..
HTML Code:
onmouseover="hoverChange('myImage');" onmouseout="hoverOut('myImage');" border=0
Assuming the id of the image is myImage.
Or something like that. Anyhow you can always define class and change the class on the onmouse events.
Hope it helps
