Hallo berdn,
Ggf. kannst Du auch Deinen "Effekt" nur mit CSS realisieren.
Ja, das sollte möglich sein; allerdings weiß ich nicht, ob es in Marcel's Sinne ist, dass der Bildwechseleffekt wieder rückgängig gemacht wird, sobald das angeklickte A-Element den Fokus wieder verliert.
<html>
<head>
<style type="text/css">[code lang=css]
a#meinBildteil {
background:url(normalBild.gif) no-repeat;
width:200px;
height:30px;
display:block;
}
a#meinBildteil:focus, a#meinBildteil:active {
background-image:url(fokusBild.gif);
}
</style>
</head>
<body>
<a id="meinBildteil" href="#"></a>
</body>
</html>
[/code]
Gruß Gernot