Oliver: Image in DIV mit Javascript ändern

Beitrag lesen

Hallo Forumler,
ich versuche gerade bei einer onmouseover-Aktion einen Bildwechsel in einem Div zu machen.
Der DIV Bereich hat id="auswahl".
Das Ansprechen im Navigator klappt mit

parent.frames[1].document.auswahl.document.images[bildnr].src=bildobjekt.src;

Wie spreche ich das Image im IE an ??? Ich habe es in der Form

function bildwechsel(bildnr,bildobjekt)
{
if (document.all)
{
                parent.frames[1].document.all.auswahl.image[0].src=bildobjekt.src;
             }
if (document.layers)
{  
    parent.frames[1].document.auswahl.document.images[bildnr].src=bildobjekt.src;
}

versucht.
Geht nicht....

tschau Oliver