$(document).ready(function(){
	$("a.fancy").fancybox({
		'titleShow' : false
	});

	$("a.cascade").fancybox({
		'titleShow' : false,
		'type' : 'iframe',
		'width' : 960,
		'height' : 600
	});


	$("#header > div ul li").hover(function(){
		$("ul", this).slideDown(250);},
		function(){$("ul", this).fadeOut(250);
	});
	
	$('div.toggle-content').hide();
    $('a.toggler').click(function() {
        $(this).prev('div.toggle-content').toggle(500);

        var text = $(this).text();

        $(this).text(text == "Bekijk antwoord" ? "Verberg antwoord" : "Bekijk antwoord");

    });
    
	var height = $("#sidebar").height();
	$("#main").css({'min-height': height});

});
