Tobi: Automatischer Bildwechsel

Beitrag lesen

Hi!
Ich habe es jetzt so gemacht. Ich hoffe es ist richtig. Jedenfalls von der Idee her. Weil funktionieren tut es nicht :'(( Selbst die JS-Konsole sagt nichts. Wo liegt der Fehler?
#################################################################
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">

<html>
<head>
 <title>Bild</title>
 <link rel="STYLESHEET" type="text/css" href="css.css">
<script type="text/javascript">
var Bild = new Array();
Bild[0] = new Image();
Bild[0].src = "bild_copy20.png";
Bild[1] = new Image();
Bild[1].src = "bild_copy30.png";
Bild[2] = new Image();
Bild[2].src = "bild_copy40.png";
Bild[3] = new Image();
Bild[3].src = "bild_copy50.png";
Bild[4] = new Image();
Bild[4].src = "bild_copy60.png";
Bild[5] = new Image();
Bild[5].src = "bild_copy70.png";
Bild[6] = new Image();
Bild[6].src = "bild_copy80.png";
Bild[7] = new Image();
Bild[7].src = "bild_copy90.png";
Bild[8] = new Image();
Bild[8].src = "bild_copy100.png";

var i = 0;
function Bild() {
for (var b = 0; b < Bild.length; ++b)
window.setInterval("Bildwechsel(Bild[b])", 1000);
i + 1;
}
</script>
</head>

<body>
<div id="bild">
<img src="bild_copy10.png" alt="" width="1000" height="125" border="0">
</div>
</body>
</html>
#################################################################
Vielen vielen Dank für deine Antwort! Ich bin sehr dankbar!
greetz Tobi