/***********************************************************************Author:     Sander TiekstraCompany:    TiekstramediaURL:        http://www.tiekstramedia.nl			http://www.4rn0.nl***********************************************************************//* Initialize behaviour on page or DOM load-------------------------------------------------------------------- */if (document.addEventListener) { document.addEventListener('DOMContentLoaded',init,null); }/*@cc_on @*/ /*@if (@_win32) document.write("<script defer src=../_js/init.js><"+"/script>"); /*@end @*/   window.onload = init;function init() {	if (arguments.callee.done) {		return;	}		arguments.callee.done = true;		if (typeof(document.getElementById) == 'undefined') {		document.getElementById = function(id) {			return document.all[id];		};	}		startUFO();}/* Place Flash Object-------------------------------------------------------------------- */function startUFO() {	var FO = { movie:"AldeFeanen.swf", width:"980", height:"640", majorversion:"8", build:"0", xi:"true" };	UFO.create(FO, "container");}/* Set backgroundcolor body-------------------------------------------------------------------- */function setBgColor(hexcode) {	if (document.getElementsByTagName('body')[0]) {		document.getElementsByTagName('body')[0].style.background = hexcode;	}}