$(document).ready(function() {
function fancybox(){
/* Fancybox */
	$(".video_swf").fancybox({
		'titlePosition'		: 'inside',
		'width'				: 818,
		'height'			: 500,
		'padding'			: 10,
		'margin'			: 10,
		'autoScale'			: false,
		'transitionIn'		: 'elastic',
		'transitionOut'		: 'elastic'
	});
	
	$(".iframe").fancybox({
		'width'				: 818,
		'height'			: 500,		
		'autoScale'			: false,
		'transitionIn'		: 'none',
		'transitionOut'		: 'none'
	});
	
	$(".les").fancybox({
		'width'				: '85%',
		'height'			: '101%',
		'autoScale'			: true,
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'type'				: 'iframe'
	});
}

/* echte URL switchen zodat de gebruiker deze niet te zien krijgt in de status balk (links onder) in de browser */
$("a.iframe").mousedown(function(){
	var link = $(this).attr('name');
	$(this).attr('href', link);

	$('a[name$="zip"]').removeAttr("class");
	
	if($(this).attr("class") == "iframe"){
		fancybox();	
	}
});

$("a.iframe").mouseout(function(){
	$(this).attr('href', '');
});

/* lessen */
$("a.les").mousedown(function(){
	var link = $(this).attr('name');
	$(this).attr('href', link);

	$('a[name$="zip"]').removeAttr("class");
	
	if($(this).attr("class") == "les"){
		fancybox();	
	}
});
});
