$(document).ready(function(){
	if (location.href.indexOf("#wat_is_een_hypotheek") > -1){
		video('Wat is een hypotheek', 'JLYw4UJYOew');
	}
});

function video(fName, fVideo){
	function close(){
		$('#video').remove();
	}
	
	$('body').append('<div id="video"><div id="video_fg"></div><div id="video_bg"></div></div>');
	
	$('#video_fg').flash(
		{src: 'http://www.youtube.com/v/'+ fVideo +'&autoplay=1',width:640, height:385},
		{version:8}
	);
	$('#video_bg').bind('click', close);
}
