Hallo Yadgar,
im2[i].onmouseover = "src = over.src";
im2[i].onclick = "src = click.src";
im2[i].onmouseout = "src = out";
Eventhandler regeln, was beim eintreten eines Events gemacht werden soll. Daher sollte man dem Eventhandler eine Funktion zuweisen.
function tuwas() {
...
}
...
im2[i].onmouseover=tuwas;
oder
im2[i].onmouseover=function() { ... } ;
z.B.
im2[i].onmouseover=function() { this.src=over.src } ; (nicht getestet )
Gruß, Jürgen