Erstmal habe ich kein einziges bild aus dem linken frame gesehen, liegt daran, dass du sie im BMP-Format hast, speicher die Bilder doch im GIF-Format ab.
hier noch ein kleines Beispiel
<script language="JavaScript">
<!--
if (document.images)
{
HighBild = new Array(4);
HighBild[0] = new Image(x,y);
HighBild[1] = new Image(x,y);
HighBild[2] = new Image(x,y);
HighBild[3] = new Image(x,y);
HighBild[4] = new Image(x,y);
NormBild = new Array(4);
NormBild[0] = new Image(x,y);
NormBild[1] = new Image(x,y);
NormBild[2] = new Image(x,y);
NormBild[3] = new Image(x,y);
NormBild[4] = new Image(x,y);
}
function highlight(Name,Nr)
{
if (document.iamges)
{
document.images[''+Name].src=HighBild[Nr].src;
}
}
function normal(Name,Nr)
{
if (document.iamges)
{
document.images[''+Name].src=NormBild[Nr].src;
}
}
//-->
</script>
<body>
<a href="xxx.htm" onmouseover="highligh('bild0',0)" onmouseout="normal('bild0',0)"><img scr="xxx.gif" name="bild0" height="xx" width="xx"></a>
<a href="xxx.htm" onmouseover="highligh('bild1',1)" onmouseout="normal('bild1',1)"><img scr="xxx.gif" name="bild1" height="xx" width="xx"></a>
<a href="xxx.htm" onmouseover="highligh('bild2',2)" onmouseout="normal('bild2',2)"><img scr="xxx.gif" name="bild2" height="xx" width="xx"></a>
<a href="xxx.htm" onmouseover="highligh('bild3',3)" onmouseout="normal('bild3',3)"><img scr="xxx.gif" name="bild3" height="xx" width="xx"></a>
<a href="xxx.htm" onmouseover="highligh('bild4',4)" onmouseout="normal('bild4'4)"><img scr="xxx.gif" name="bild4" height="xx" width="xx"></a>
</body>
Das beispiel funktioniert für 5 Bilder, wenn du mehr oder weniger brauchts musst du es entsprechend abändern, hab es nicht getestet, denke muss aber trotzdem funktionieren.
In die jeweiligen Platzhalter (xxx, x, y) müssen noch die entsprechenden Werte eingetragen werden.
gruss
Thorsten