YEAH!! das wars!
(beim mouseout war dann auch noch n minimaler fehler)
hier das funkionierende skript:
"<html>
<head>
<script type="text/javascript">
<!--
function anzeigenwechsel (was) {
document.getElementById("anzeige").style.backgroundImage = was;
}
//-->
</script>
</head>
<body>
<table style="background-image:url('images/anzeige_0.jpg')" id="anzeige">
<tr>
<td>
<a onMouseOver="anzeigenwechsel('url(images/anzeige_1.jpg)')" onMouseOut="anzeigenwechsel('url(images/anzeige_0.jpg)')" href="#">
<img border="0" src="images/blindpixel.gif" width="120" height="500"></a></td>
<td>
<a onMouseOver="anzeigenwechsel('url(images/anzeige_2.jpg)')" onMouseOut="anzeigenwechsel('url(images/anzeige_0.jpg)')" href="#">
<img border="0" src="images/blindpixel.gif" width="120" height="500"></a></td>
<td>
<a onMouseOver="anzeigenwechsel('url(images/anzeige_3.jpg)')" onMouseOut="anzeigenwechsel('url(images/anzeige_0.jpg)')" href="#">
<img border="0" src="images/blindpixel.gif" width="120" height="500"></a></td>
<td>
<a onMouseOver="anzeigenwechsel('url(images/anzeige_4.jpg)')" onMouseOut="anzeigenwechsel('url(images/anzeige_0.jpg)')" href="#">
<img border="0" src="images/blindpixel.gif" width="120" height="500"></a></td>
<td>
<a onMouseOver="anzeigenwechsel('url(images/anzeige_5.jpg)')" onMouseOut="anzeigenwechsel('url(images/anzeige_0.jpg)')" href="#">
<img border="0" src="images/blindpixel.gif" width="120" height="500"></a></td>
</tr>
</div>
</table>
</body>
</html>"
jetzt will ich die bilder noch vor-laden lassen, weils im moment so klimpert. aber ist ist wohl n anderes thema.
D A N K E !