mouseover ist easy...
altenrativ gibt es da noch über js mit
wobei die mit css einfacher und auch besser ist solange es einer mit wechselnden hintergründen etc sein soll
PHP Code:
a {
background:url("das normale bild") no-repeat;
width:angabepx;
height:angabe;
}
a:hover {
background:url("bild beim hover") no-repeat;
}
PHP Code:
<img src="blabal" onmouseover="this.src='bildname.jpg';" onmouseout="this.src='bildname2.jpg';" />