$(document).ready(function(){

	function hideHTMLLayer() {
		$("#htmlcontent").hide();
	}
	
	function hideFlashLayer() {
		$("#flashcontent").hide();
	}
	
	function populateMenu() {
		$("#menu").html('<a href="/">De Roedel</a> | <a href="roedelen.htm">Roedelen</a> | <a href="visie.htm">Visie</a> | <a href="executive-coaching.htm">Executive Coaching</a> | <a href="life-coaching.htm">Life Coaching</a> | <a href="werkwijze.htm">Werkwijze</a> | <a href="coachingthemas.htm">Coachingthema\'s</a><br /> <a href="hanneke-de-bruin.htm">Hanneke de Bruin</a> | <a href="inspiratiebronnen.htm">Inspiratiebronnen</a> | <a href="lezingen-de-roedel.htm">Lezingen De Roedel</a> | <a href="referenties.htm">Referenties</a> | <a href="contact.htm">Contact</a>');
	}
	
	function replaceFlash() {
		jQuery.each($("object"), function(i, val) {
			$(this).outerHTML = $(this).outerHTML;
		});
	}
	
	if (FlashDetect.installed && FlashDetect.major > 5) {
		hideHTMLLayer();
		replaceFlash();
	} else {
		hideFlashLayer();
		populateMenu();
	}
	
});

$(window).unload(function(){
	jQuery.each($("object"), function(i, val) {
		$(this).outerHTML = "";
	});
});

function setIndex(index) {
	window.document.blocks5Verdana.SetVariable("/mcControl:index",index);
}

// This function is called by the Flash object, and won't work if it exists inside the document.ready function.
function popup(url,target,options){
	window.open(url,target,options+',location=yes,status=yes,toolbar=yes,menubar=yes,scrollbars=yes,resizable=yes');
}
