// Preload animation images

theImages = new Array()
for(j =0; j <17; j++) {
   theImages[j] = new Image()
   theImages[j].src = "images/seelenfaengerin" + j + ".jpg"
   }
imageNum =1
function animate() {
document.animation.src = theImages[imageNum].src;
 imageNum++
 if(imageNum >16) {
   imageNum =0
   }
}
//end of script
