function startAnimatie()
{
	if (document.all)
	{
		//alert('blend, j=' + j + '  aantalPics=' + aantalPics);
		document.images.keywords_slideshow.style.filter="blendTrans(duration=2)";
		document.images.keywords_slideshow.style.filter="blendTrans(duration=crossFadeDuration)";
		document.images.keywords_slideshow.filters.blendTrans.Apply();
	}

	document.images.keywords_slideshow.src = preLoad[j].src;

	if (document.all)
	{
		document.images.keywords_slideshow.filters.blendTrans.Play();
	}
	
		
	if (j == (aantalPics - 1))
		j = 0;
	else
		j = j + 1;
	
	//alert('test, j=' + j + '  aantalPics=' + aantalPics);
	setTimeout('startAnimatie()', slideShowSpeed);
}