becker: anfänger frage - function - this

Beitrag lesen

hallo,

folgendes szenario:

function hell() {
this.style.filter = "alpha(opacity=100)"
}
function dunkel() {
this.style.filter = "alpha(opacity=80)"
}

<a href="#">
  <img src="bild.jpg" style="filter:alpha(opacity=80)"
   onmouseover="hell()" onmouseout="dunkel()">
</a>
... hier folgen mehrere solcher bild-links ...

was muss ich in die funktion schreiben, damit sie "weiss", dass
sie für dieses Bild (img) gedacht ist.

die funktions-aufruf sollte dann so aussehen

onmouseover="hell(this)"

danke
mfg Becker