<!-- Original:  CodeLifter.com (support@codelifter.com) -->
<!-- Web Site:  http://www.codelifter.com -->

<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- Begin
// Set slideShowSpeed (milliseconds)
var slideShowSpeed = 5000;
// Duration of crossfade (seconds)
var crossFadeDuration = 3;

// Specify the image files
var Pic = new Array();
Pic[0] = 'animationen/stickroth.gif'
Pic[1] = 'animationen/sulcor.gif'
Pic[2] = 'animationen/derching.gif'
Pic[3] = 'animationen/allegra.gif'
Pic[4] = 'animationen/streit.gif'
Pic[5] = 'animationen/bonstetten.gif'
Pic[6] = 'animationen/santorin.gif'
Pic[7] = 'animationen/trokal.gif'
Pic[8] = 'animationen/ellgau.gif'
Pic[9] = 'animationen/atrium.gif'
Pic[10] = 'animationen/saturn.gif'
Pic[11] = 'animationen/patio.gif'
Pic[12] = 'animationen/grenoble2.gif'
Pic[13] = 'animationen/kreppen.gif'
Pic[14] = 'animationen/clermont.gif'
Pic[15] = 'animationen/steppach.gif'
Pic[16] = 'animationen/solitair.gif'
Pic[17] = 'animationen/sanibel.gif'
Pic[18] = 'animationen/planegg.gif'
Pic[19] = 'animationen/friedberg.gif'
Pic[20] = 'animationen/grafrath.gif'
Pic[21] = 'animationen/riederau.gif'
Pic[22] = 'animationen/le_chalet.gif'
Pic[23] = 'animationen/deubach.gif'
Pic[24] = 'animationen/bergheim.gif'
Pic[25] = 'animationen/maisach.gif'
Pic[26] = 'animationen/anja.gif'
Pic[27] = 'animationen/figueira.gif'
Pic[28] = 'animationen/reich.gif'
Pic[29] = 'animationen/calida.gif'
Pic[30] = 'animationen/grenoble1.gif'
Pic[31] = 'animationen/sorrent.gif'
Pic[32] = 'animationen/affing.gif'
Pic[33] = 'animationen/volterra.gif'

var Adresse = new Array();
Adresse[0] = 'haeuser/haeuser2.html#ametin'
Adresse[1] = 'haeuser/haeuser.html#aystetten'
Adresse[2] = 'haeuser/haeuser.html#derching'
Adresse[3] = 'haeuser/haeuser.html#allegra'
Adresse[4] = 'sonder/streit_a1.html'
Adresse[5] = 'haeuser/haeuser.html#bonstetten'
Adresse[6] = 'haeuser/haeuser.html#santorin'
Adresse[7] = 'haeuser/haeuser.html#trokal'
Adresse[8] = 'haeuser/haeuser.html#ellgau'
Adresse[9] = 'studien/studien.html#atrium'
Adresse[10] = 'haeuser/haeuser.html#saturn'
Adresse[11] = 'haeuser/haeuser.html#patio'
Adresse[12] = 'haeuser/haeuser.html#grenoble'
Adresse[13] = 'haeuser/haeuser.html#kreppen'
Adresse[14] = 'haeuser/haeuser.html#clermont'
Adresse[15] = 'haeuser/haeuser2.html#steppach'
Adresse[16] = 'haeuser/haeuser.html#solitair'
Adresse[17] = 'haeuser/haeuser.html#sanibel'
Adresse[18] = 'haeuser/haeuser.html#planegg'
Adresse[19] = 'haeuser/haeuser.html#friedberg'
Adresse[20] = 'haeuser/haeuser.html#grafrath'
Adresse[21] = 'haeuser/haeuser2.html#riederau'
Adresse[22] = 'haeuser/haeuser2.html#le_chalet'
Adresse[23] = 'haeuser/haeuser.html#deubach'
Adresse[24] = 'haeuser/haeuser2.html#bergheim'
Adresse[25] = 'haeuser/haeuser2.html#maisach'
Adresse[26] = 'dhh/dhh.html#anja'
Adresse[27] = 'studien/studien.html#figueira'
Adresse[28] = 'studien/studien.html#reich'
Adresse[29] = 'haeuser/haeuser.html#calida'
Adresse[30] = 'haeuser/haeuser.html#grenoble'
Adresse[31] = 'haeuser/haeuser.html#sorrent'
Adresse[32] = 'haeuser/haeuser.html#affing'
Adresse[33] = 'haeuser/haeuser.html#volterra'


var Zufall = 0;
var Auswahl = 0;

var Anzahl_Bilder = Pic.length - 1;
do {
var Zufallszahl = Math.random();
Zufall = Math.round((Anzahl_Bilder - 1) * Zufallszahl) + 1;
} while (Zufall == Auswahl);
Auswahl = Zufall;


// do not edit anything below this line
var t;
var j = Auswahl;
var p = Pic.length;
var preLoad = new Array();
for (i = 0; i < p; i++) {
preLoad[i] = new Image();
preLoad[i].src = Pic[i];
}
function Verweis()  {
window.location.href = Adresse[j-1]
}

function runSlideShow() {
if (document.all) {
document.images.SlideShow.style.filter="blendTrans(duration=2)";
document.images.SlideShow.style.filter="blendTrans(duration=crossFadeDuration)";
document.images.SlideShow.filters.blendTrans.Apply();
}


//preLoad[j-1].src = Pic[j-1];
//preLoad[j].src = Pic[j];

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 -->

