in relation to ur post here:
http://www.netwerkin.com/cgi-bin/ult...;f=6;t=000120, milano, its very simple if u are only using the same pictures for on an off
Code:
<script type="text/javascript">
function on(x)
{
x.src="images/on.gif";
}
function off(x)
{
x.src="images/off.gif";
}
</script>
<a href="link.com">
<img onmouseover="on(this)" onmouseout="off(this)" />
</a>
and its that easy
