jQuery(document).ready(function($) {
	// algemeen
	$('ul li:first').addClass('first');
    $('ul li:last').addClass('last');
    $('a[href^="http://"]').attr({target: "_blank"});
    $("a[href$=pdf]").addClass("pdf").attr({target: "_blank"});

    var cont_hght = $("#content").height();
    var kol_hght = $("#r_kol").height();
    
    if (cont_hght > kol_hght)
    	$("#r_kol").height(cont_hght);
    else
    	$("#content").height(kol_hght);


	//FANCYBOX
	$("a.fancy.img").fancybox({
		'transitionIn'	: 'fade',
		'transitionOut'	: 'fade',
		'speedIn'		: 400, 
		'speedOut'		: 200,
		'overlayShow'	: false,
		'titleShow'     : false
	});
	
	$("a.fancy.mboek").fancybox({
		'type'			: 'iframe',
		'width'			: 800,
		'height'		: 640,
		'transitionIn'	: 'fade',
		'transitionOut'	: 'fade',
		'speedIn'		: 400, 
		'speedOut'		: 200,
		'overlayShow'	: true,
		'titleShow'     : false
	});

	$("a.fancy.sentoo").fancybox({
		'type'			: 'iframe',
		'width'			: 900,
		'height'		: 405,
		'transitionIn'	: 'fade',
		'transitionOut'	: 'fade',
		'speedIn'		: 400, 
		'speedOut'		: 200,
		'overlayShow'	: true,
		'titleShow'     : false
	});	
	
		$("a.fancy.follea").fancybox({
		'type'			: 'iframe',
		'width'			: 980,
		'height'		: 600,
		'transitionIn'	: 'fade',
		'transitionOut'	: 'fade',
		'speedIn'		: 400, 
		'speedOut'		: 200,
		'overlayShow'	: true,
		'titleShow'     : false
	});	
	
	$("a.fancy.goldwell").fancybox({
		'type'			: 'iframe',
		'width'			: 900,
		'height'		: 700,
		'transitionIn'	: 'fade',
		'transitionOut'	: 'fade',
		'speedIn'		: 400, 
		'speedOut'		: 200,
		'overlayShow'	: true,
		'titleShow'     : false
	});
	
	$("a.fancy.kappersite").fancybox({
		'type'			: 'iframe',
		'width'			: 1020,
		'height'		: 700,
		'transitionIn'	: 'fade',
		'transitionOut'	: 'fade',
		'speedIn'		: 400, 
		'speedOut'		: 200,
		'overlayShow'	: true,
		'titleShow'     : false
	});	
   
	$("a.fancy.route").fancybox({
		'type'			: 'iframe',
		'width'			: 700,
		'height'		: 550,
		'transitionIn'	: 'fade',
		'transitionOut'	: 'fade',
		'speedIn'		: 400, 
		'speedOut'		: 200,
		'overlayShow'	: true,
		'titleShow'     : false
	});

});

