
$(document).ready(function() {
	//hoogte
	var default_height = 300;
	
	var content_height = $(".content_middle").height();
	var project_height = $(".project_middle").height();
	
	if(content_height > default_height){
		$(".project_middle").height(content_height);
	} else {
		$(".project_middle").height(default_height);
		$(".content_middle").height(default_height);
	}
	
	
	
	//fancybox
	$(".fbiframe").fancybox({
		'transitionIn':'elastic',
		'transitionOut':'elastic',
		'type':'iframe',
		'speedIn':600,
		'speedOut':200,
		'width':'80%',
		'height':'60%',
		'overlayShow':'true',
		'showCloseButton':'true',
		'scrolling':'auto'
	});
});
