HI!
Wie sieht denn der von Dir angepasste Code nun aus?
SO:
var inaktiv="bild0";
function Wechsel(bildname,zustand)
{
if (inaktiv!=bildname)
{
if (zustand==1) document[bildname].src =bildname+"ro.jpg"; /*Zustand beim OnMouseOver*/
if (zustand==2) document[bildname].src =bildname+".jpg"; /*Zustand nach OnMouseOut*/
if (zustand==3) {
document[inaktiv].src =inaktiv+".jpg"; /*Zustand nach OnClick*/
document[bildname].src = bildname+"ro.jpg";
inaktiv=bildname; }
}
return true; }