// array aanmaken, wordt gevuld vanuit slideshow.xslt
var fotos = new Array();
var fotoIndex = 2;

function slideshow() {
	toonFoto(fotos[fotoIndex]);
	fotoIndex++;
	if(fotoIndex == fotos.length) {
		fotoIndex = 1;
	}
	setTimeout("slideshow();", 5000);
}

function toonFoto(foto) {
	$('img.foto_groot_boven').fadeOut(1000, function() {changeSrc('img.foto_groot_boven', foto);});	
	return;
}

function changeSrc(imgClass, newSrc) {
	$(imgClass).attr('src', newSrc);
	$('img.foto_groot_boven').fadeIn(1000);
	return;
}

function WriteSwf(img,wsize,hsize,vvspace){
result = img.indexOf("swf");
if (result<0)
	{
		document.write("<img src=\""+img+"\" vspace=\""+vvspace+"\"></img>");
	}
else
	{	
	document.write("<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0\" width=\"450\" height=\"200\" vspace=\""+vvspace+"\" style=\"z-index: 999;\">");
	document.write("<param name=\"movie\" value=\""+img+"\">");
	document.write("<param name=\"quality\" value=\"high\">");
	document.write("<param name=\"scale\" value=\"Scale\">");
	document.write("<param name=\"wmode\" value=\"transparent\">");
	document.write("<embed src=\""+img+"\" wmode=\"transparent\" quality=\"high\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" type=\"application/x-shockwave-flash\" width=\"450\" height=\"200\"></embed>");
	document.write("</object>");
	}
}

function WriteMov(img,wsize,hsize){
	document.write("<OBJECT ID=\"MediaPlayer\" WIDTH="+wsize+" HEIGHT="+hsize+" ");
	document.write("CLASSID=\"CLSID:22D6F312-B0F6-11D0-94AB-0080C74C7E95\"");
	document.write("STANDBY=\"Loading Windows Media Player components...\" ");
	document.write("TYPE=\"application/x-oleobject\">");
	document.write("<PARAM NAME=\"FileName\" VALUE=\""+img+"\">");
	document.write("<PARAM NAME=\"autoStart\" VALUE=\"true\">");
	document.write("<PARAM NAME=\"showControls\" VALUE=\"false\">");
	document.write("<EMBED TYPE=\"application/x-mplayer2\" SRC=\""+img+"\"");
	document.write("  autoStart=1");
	document.write("  showControls=0");
	document.write(" NAME=\"MediaPlayer\"");
	document.write(" WIDTH="+wsize+"");
	document.write(" HEIGHT="+hsize+"");
	document.write(" PLUGINSPAGE=\"http://www.microsoft.com/windows/windowsmedia/download/\">");
	document.write("</EMBED>");
	document.write("</OBJECT>");

}

function hide_intrologo() {
	setTimeout('verberglogo()',4000);
}

function verberglogo() {
	$('#intrologo').hide(3000);
}