<!-- Begin
// Set slideShowSpeed (milliseconds)
var slideShowSpeed = 4000;
// Duration of crossfade (seconds)
var crossFadeDuration = 60;
// Specify the image files
var Pic = new Array();
// to add more images, just continue
// the pattern, adding to the array below
           
                            
Pic[ 0] = '01parasol/erfurt/920/bild04.jpg'
Pic[ 1] = '01parasol/erfurt/920/bild04.jpg'
Pic[ 2] = '01fievklang/920/bild04.jpg'
Pic[ 3] = '02folkinger/920/bild01.jpg'
Pic[ 4] = '03leblanc/berlin/920/stopper.jpg'
Pic[ 5] = '04decaccord/920/bild01.jpg'
Pic[ 6] = '04folkinger/920/bild07.jpg'
Pic[ 7] = '04leblanc/920/union.jpg'
Pic[ 8] = '05thf/920/flyer.jpg'
Pic[ 9] = '06chablis/920/bild01.jpg'
Pic[10] = '06elfen/920/bild02.jpg'
Pic[11] = '06hc/920/bild07.jpg'
Pic[12] = '06vialfre/920/logo.jpg'
Pic[13] = '07compagnia/920/bild05.jpg'
Pic[14] = '08theze/920/bild01.jpg'
Pic[15] = '08jwd/cassis/920/bild02.jpg'
Pic[16] = '09compagnia/920/bild06.jpg'
Pic[17] = '09bruno/berlin/920/stopper.jpg'
Pic[18] = '10ruepascale/union/920/bild02.jpg'
Pic[19] = '11folkinger/920/bild01.jpg'
Pic[20] = '11impuls/920/stopper.jpg'
Pic[21] = '11charlot/920/bild02.jpg'
Pic[22] = '11folkadvent/920/bild40.jpg'
Pic[23] = '12tkp/920/bild02.jpg'
Pic[24] = '12ludwigstein/impressionen/920/bild17.jpg'
           
// do not edit anything below this line      
var t;                                
var j = 0;                            
var p = Pic.length;                   
var preLoad = new Array();            
for (i = 0; i < p; i++) {
preLoad[i] = new Image();
preLoad[i].src = Pic[i];
}
function runSlideShow() {
if (document.all) {
document.images.SlideShow.style.filter="blendTrans(duration=crossFadeDuration)";
document.images.SlideShow.filters.blendTrans.Apply();
}
document.images.SlideShow.src = preLoad[j].src;
if (document.all) {
document.images.SlideShow.filters.blendTrans.Play();
}
j = j + 1;
if (j > (p - 1)) j = 0;
t = setTimeout('runSlideShow()', slideShowSpeed);
}
//  End -->


















