	var arrTestimonials=new Array();
	arrTestimonials[0] ='graphics/blok_00.jpg';
	arrTestimonials[1] ='graphics/blok_01.jpg';
	arrTestimonials[2] ='graphics/blok_02.jpg';
	arrTestimonials[3] ='graphics/blok_03.jpg';
	arrTestimonials[4] ='graphics/blok_04.jpg';
	arrTestimonials[5] ='graphics/blok_05.jpg';
	arrTestimonials[6] ='graphics/blok_06.jpg';
	arrTestimonials[7] ='graphics/blok_07.jpg';
	arrTestimonials[8] ='graphics/blok_08.jpg';
	arrTestimonials[9] ='graphics/blok_09.jpg';
	arrTestimonials[10]='graphics/blok_10.jpg';
	arrTestimonials[11]='graphics/blok_11.jpg';
	arrTestimonials[12]='graphics/blok_12.jpg';
	arrTestimonials[13]='graphics/blok_13.jpg';
	arrTestimonials[14]='graphics/blok_14.jpg';
	arrTestimonials[15]='graphics/blok_15.jpg';
	arrTestimonials[16]='graphics/blok_16.jpg';
	
	var iTestimonialIndex = 0;
	var bWasText1         = false;
	var bWasText2         = false;
	
	function initTestimonials()
	{	var iCellIdx

		if (arrTestimonials.length == 0)
			return;
		iTestimonialIndex++;
		for (iCellIdx=0; iCellIdx < 9; iCellIdx++)
		{	if (eval("document.all['cell" + iCellIdx + "']"))
			{	if (iTestimonialIndex >= arrTestimonials.length)
			      iTestimonialIndex=0;
				// start with a predefined state
				if (iCellIdx == 7 )
				{	eval("document.all['cell" + iCellIdx + "'].innerHTML='<font color=white style=font-weight:bold>Wilhelmina, DE schutterij van DIDAM</font>';");
					eval("document.all['cell" + iCellIdx + "'].bgColor='blue';");
				}
				else if (iCellIdx == 9)
				{	eval("document.all['cell" + iCellIdx + "'].innerHTML='<font color=white style=font-weight:bold>Een wereld aan mogelijkheden</font>';");
					eval("document.all['cell" + iCellIdx + "'].bgColor='blue';");
				}
				else if (iCellIdx == 2 || iCellIdx == 4)
				{	eval("document.all['cell" + iCellIdx + "'].innerHTML='<img src=/graphics/white.gif border=0 width=110 height=110>'");
				}
				else
				{	eval("document.all['cell" + iCellIdx + "'].innerHTML='<img src=" + arrTestimonials[iTestimonialIndex] + " border=0 width=110 height=110>'");
					iTestimonialIndex++;
				}
			}
		}
		window.setTimeout('changeTestimonials()', 1500);
	}
	function changeTestimonials()
	{	var iCellIdx;
		var bShow;
		with (Math)
		{	iCellIdx=round(random() * 8)
		}
		if (eval("document.all['cell" + iCellIdx + "']"))
		{	if (bWasText1)
			{	if (eval("document.all['cell" + iCellIdx + "'].innerHTML.search(/Een wereld aan mogelijkheden/)") == -1)
				{	eval("document.all['cell" + iCellIdx + "'].innerHTML='<font color=white style=font-weight:bold>Wilhelmina, van iedereen voor iedereen</font>';");
					eval("document.all['cell" + iCellIdx + "'].bgColor='blue';");
					bWasText1=false;
				}
			}
			else if (bWasText2)
			{	if (eval("document.all['cell" + iCellIdx + "'].innerHTML.search(/Wilhelmina, DE schutterij van DIDAM/)") == -1)
				{	eval("document.all['cell" + iCellIdx + "'].innerHTML='<font color=white style=font-weight:bold>Een wereld aan mogelijkheden</font>';");
					eval("document.all['cell" + iCellIdx + "'].bgColor='blue';");
					bWasText2=false;
				}
			}
			else
			{
				with (Math)
				{ var iRand = random() * 10;
				  iRand = floor(iRand) + 1; // 1..10
				  if (iRand % 4 == 0)
				    bShow=false;
				  else
					bShow=true;
				}
				if (iTestimonialIndex >= arrTestimonials.length)
					iTestimonialIndex=0;
				if (eval("document.all['cell" + iCellIdx + "'].innerHTML.search(/Wilhelmina, DE schutterij van DIDAM/)") != -1)
				{	bWasText1=true;
					eval("document.all['cell" + iCellIdx + "'].bgColor='white';");
				}
				if (eval("document.all['cell" + iCellIdx + "'].innerHTML.search(/Een wereld aan mogelijkheden/)") != -1)
				{	bWasText2=true;
					eval("document.all['cell" + iCellIdx + "'].bgColor='white';");
				}
				var test="dir/path/graphics.jpg";
				if (bShow)
				{	if (eval("document.all['cell" + iCellIdx + "'].innerHTML.search(/" + String(arrTestimonials[iTestimonialIndex]).replace(/\//g, "\\/") + "/)") == -1)
						eval("document.all['cell" + iCellIdx + "'].innerHTML='<img src=" + arrTestimonials[iTestimonialIndex] + " border=0 width=110 height=110>'");
					iTestimonialIndex++;
				}
				else
				{	eval("document.all['cell" + iCellIdx + "'].innerHTML='<img src=/graphics/white.gif border=0 width=110 height=110>'");
				}
			}
		}
		window.setTimeout('changeTestimonials()', 1500);
	}


