<!--
// function FlashTitels {
// Vervangt de h1-TAGS door flash!! Betere manier voor de zoekmachines dan gewoon flash gebruiken
// en html blijft overzichtelijk, zoals het hoort. }

function FlashTitelsH2() {
	//alert("huh?")
	if(!document.getElementById || !document.getElementsByTagName) return false;
	var titelh2 = document.getElementsByTagName("h2"); // vind links in divID
	if (titelh2.length != 0) { // als er inhoud in zit,
		for(i=0; i<titelh2.length; i++) { // maak een loop met alle links
		titelinhoud2 = titelh2[i].innerHTML; // zoek inhoud op uit h1
		flashcontent2 = "\n<OBJECT type=\"application/x-shockwave-flash\" data=\"flash/titel2.swf\" class=\"flashtitel2\" >\n"
					+" <PARAM NAME=movie VALUE=\"flash/titel2.swf\">\n"
					+" <PARAM NAME=flashvars VALUE=\"titel="+titelinhoud2+"\">\n"
					+" <PARAM NAME=quality VALUE=best>\n"
					+" <PARAM NAME=loop VALUE=false>\n"
					+" <PARAM NAME=wmode VALUE=transparent>\n"
					+"</OBJECT>\n\n";
		titelh2[i].innerHTML = flashcontent2;
		}
	}	
}


//window.onload = function() {
//	FlashTitels();
//	initRollovers();
//	//alert("huh?")
//}
-->