/* 
 * SPonsorenwechsel automatisch
 * and open the template in the editor.
 */

<!--
var time = 1000 //Die Zeit wie lange ein Bild angezeigt wird in ms
var bild = new Array();
bild[0] = "http://www.url.de/bild1.gif"; //Deine Bilder (belibig erweiterbar)
bild[1] = "http://www.url.de/bild2.gif";
bild[2] = "http://www.url.de/bild198.gif";

var narf = "0";
function bildwechseln() {
document.wechselbild.src = bild[narf];
narf++;
if (narf == bild.length) {
narf = 0;
}
setTimeout("bildwechseln()",time);
}
-->

