
var Pic = new Array()

if (Type == 'Home')
	{
		Pic[0] = 'template/slideshow/gebouw.jpg'
		Pic[1] = 'template/slideshow/balie.jpg'
	}
if (Type == 'Lage_Rug')
	{
		Pic[0] = 'template/slideshow/Lage_Rug_1.jpg'
		Pic[1] = 'template/slideshow/Lage_Rug_2.jpg'
		Pic[2] = 'template/slideshow/Lage_Rug_3.jpg'
	}
if (Type == 'Spit')
	{
		Pic[0] = 'template/slideshow/Spit.jpg'
		Pic[1] = 'template/slideshow/Spit_1.jpg'
	}
if (Type == 'Hernia')
	{
		Pic[0] = 'template/slideshow/Hernia_1.jpg'
		Pic[1] = 'template/slideshow/Hernia_2.jpg'
	}
if (Type == 'Whiplash')
	{
		Pic[0] = 'template/slideshow/Whiplash_1.jpg'
		Pic[1] = 'template/slideshow/Whiplash_2.jpg'
		Pic[2] = 'template/slideshow/Whiplash_3.jpg'
	}
if (Type == 'RSI')
	{
		Pic[0] = 'template/slideshow/RSI_1.jpg'
		Pic[1] = 'template/slideshow/RSI_2.jpg'
	}
if (Type == 'Hoofdpijn')
	{
		Pic[0] = 'template/slideshow/Hoofdpijn_1.jpg'
		Pic[1] = 'template/slideshow/Hoofdpijn_2.jpg'
		Pic[2] = 'template/slideshow/Hoofdpijn_3.jpg'
	}
if (Type == 'Huilbaby')
	{
		Pic[0] = 'template/slideshow/Huilbaby_1.jpg'
		Pic[1] = 'template/slideshow/Huilbaby_2.jpg'
		Pic[2] = 'template/slideshow/Huilbaby_3.jpg'
	}
if (Type == 'Kiss')
	{
		Pic[0] = 'template/slideshow/Kiss_1.jpg'
		Pic[1] = 'template/slideshow/Kiss_2.jpg'
		Pic[2] = 'template/slideshow/Kiss_3.jpg'
	}
if (Type == 'Onderzoek')
	{
		Pic[0] = 'template/slideshow/Onderzoek_1.jpg'
		Pic[1] = 'template/slideshow/Onderzoek_2.jpg'
	}
if (Type == 'Wim_Kes')
	{
		Pic[0] = 'template/slideshow/Wim_Kes_1.jpg'
		Pic[1] = 'template/slideshow/Wim_Kes_2.jpg'
		Pic[2] = 'template/slideshow/Wim_Kes_3.jpg'
	}
if (Type == 'FysiotherapieBehandeling')
	{
		Pic[0] = 'template/slideshow/FysiotherapieBehandeling_1.jpg'
		Pic[1] = 'template/slideshow/FysiotherapieBehandeling_2.jpg'
	}
if (Type == 'Rolstoel')
	{
		Pic[0] = 'template/slideshow/Rolstoel_1.jpg'
		Pic[1] = 'template/slideshow/Rolstoel_2.jpg'
		Pic[2] = 'template/slideshow/Rolstoel_3.jpg'
		Pic[3] = 'template/slideshow/Rolstoel_4.jpg'
	}
if (Type == 'Fitness')
	{
		Pic[0] = 'template/slideshow/Fitness_1.jpg'
		Pic[1] = 'template/slideshow/Fitness_2.jpg'
	}
if (Type == 'Kinesis')
	{
		Pic[0] = 'template/slideshow/Kinesis_1.jpg'
		Pic[1] = 'template/slideshow/Kinesis_2.jpg'
		Pic[2] = 'template/slideshow/Kinesis_3.jpg'
	}
if (Type == 'Bedrijfsfitness')
	{
		Pic[0] = 'template/slideshow/Bedrijfsfitness_1.jpg'
		Pic[1] = 'template/slideshow/Bedrijfsfitness_2.jpg'
		Pic[2] = 'template/slideshow/Bedrijfsfitness_3.jpg'
	}
if (Type == 'Afslanken')
	{
		Pic[0] = 'template/slideshow/Afslanken_1.jpg'
		Pic[1] = 'template/slideshow/Afslanken_2.jpg'
	}
if (Type == 'Zonnestudio')
	{
		Pic[0] = 'template/slideshow/Zonnestudio_1.jpg'
		Pic[1] = 'template/slideshow/Zonnestudio_2.jpg'
		Pic[2] = 'template/slideshow/Zonnestudio_3.jpg'
	}
if (Type == 'Sunvision')
	{
		Pic[0] = 'template/slideshow/Sunvision_1.jpg'
		Pic[1] = 'template/slideshow/Sunvision_2.jpg'
	}

// Set slideShowSpeed (milliseconds)
var slideShowSpeed = 4000

// Duration of crossfade (seconds)
var crossFadeDuration = 3

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=2)"
      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)
}

window.onload = runSlideShow

