<!--
// 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 FlashTitels() {
	//alert("huh?")
	if(!document.getElementById || !document.getElementsByTagName) return false;
	var titelh1 = document.getElementsByTagName("h1"); // vind links in divID
	if (titelh1.length != 0) { // als er inhoud in zit,
		for(i=0; i<titelh1.length; i++) { // maak een loop met alle links
		titelinhoud = titelh1[i].innerHTML; // zoek inhoud op uit h1
		flashcontent = "\n<OBJECT type=\"application/x-shockwave-flash\" data=\"flash/titel.swf\" class=\"flashtitel\" >\n"
					+" <PARAM NAME=movie VALUE=\"flash/titel.swf\">\n"
					+" <PARAM NAME=flashvars VALUE=\"titel="+titelinhoud+"\">\n"
					+" <PARAM NAME=quality VALUE=best>\n"
					+" <PARAM NAME=loop VALUE=false>\n"
					+" <PARAM NAME=wmode VALUE=transparent>\n"
					+"</OBJECT>\n\n";
		titelh1[i].innerHTML = flashcontent;
		}
	}	
}


//window.onload = function() {
//	FlashTitels();
//	initRollovers();
//	//alert("huh?")
//}
-->
