<!-- Begin
	// hier de snelheid van de slideshow  (in milliseconden)
var SlideShowSpeed = 6000;

// duur van de crossfade (in seconden)
var CrossFadeDuration1 = 5;
var CrossFadeDuration2 = 5;

var Picture1 = new Array(); // 
var Picture2 = new Array(); // 

// hieonder kun je meer images tovoegen
// ze moeten echter gelijk zijn aan het aantal captions daaronder
Picture1[1]  = 'http://www.atelier-indekersentuin.nl/img/slideshow/sl5-01.jpg';
Picture1[2]  = 'http://www.atelier-indekersentuin.nl/img/slideshow/sl5-03.jpg';
Picture1[3]  = 'http://www.atelier-indekersentuin.nl/img/slideshow/sl5-05.jpg';
Picture1[4]  = 'http://www.atelier-indekersentuin.nl/img/slideshow/sl5-07.jpg';
Picture1[5]  = 'http://www.atelier-indekersentuin.nl/img/slideshow/sl5-09.jpg';
Picture1[6]  = 'http://www.atelier-indekersentuin.nl/img/slideshow/sl5-13.jpg';

Picture2[1]  = 'http://www.atelier-indekersentuin.nl/img/slideshow/sl5-02.jpg';
Picture2[2]  = 'http://www.atelier-indekersentuin.nl/img/slideshow/sl5-04.jpg';
Picture2[3]  = 'http://www.atelier-indekersentuin.nl/img/slideshow/sl5-06.jpg';
Picture2[4]  = 'http://www.atelier-indekersentuin.nl/img/slideshow/sl5-08.jpg';
Picture2[5]  = 'http://www.atelier-indekersentuin.nl/img/slideshow/sl5-10.jpg';
Picture2[6]  = 'http://www.atelier-indekersentuin.nl/img/slideshow/sl5-14.jpg';


var tss;
var iss1, iss2;
var jss1 = 1, jss2 = 1;
var pss1 = Picture1.length - 1;
var pss2 = Picture2.length - 1;

var preLoad1 = new Array();
for (iss1 = 1; iss1 < pss1 + 1; iss1++) {
preLoad1[iss1] = new Image();
preLoad1[iss1].src = Picture1[iss1];
}
var preLoad2 = new Array();
for (iss2 = 1; iss2 < pss2 + 1; iss2++) {
preLoad2[iss2] = new Image();
preLoad2[iss2].src = Picture2[iss2];
}

function runSlideShow(){
if (document.all){
document.images.PictureBox1.style.filter="blendTrans(duration=2)";
document.images.PictureBox1.style.filter="blendTrans(duration=CrossFadeDuration)";
document.images.PictureBox1.filters.blendTrans.Apply();

document.images.PictureBox2.style.filter="blendTrans(duration=2)";
document.images.PictureBox2.style.filter="blendTrans(duration=CrossFadeDuration)";
document.images.PictureBox2.filters.blendTrans.Apply();

}
document.images.PictureBox1.src = preLoad1[jss1].src;
document.images.PictureBox2.src = preLoad2[jss2].src;

if (document.all)
document.images.PictureBox1.filters.blendTrans.Play();
if (document.all)
document.images.PictureBox2.filters.blendTrans.Play();

jss1 = jss1 + 1;
jss2 = jss2 + 1;

if (jss1 > pss1)
jss1 = 1;
if (jss2 > pss2)
jss2 = 1;

tss = setTimeout('runSlideShow()', SlideShowSpeed);
}
// End --> 
