$(document).ready(function()
{
	$(".mainTitleBox").click(function() {
        if($(this).hasClass("expanded")) {
            $(this).next('.listContent').slideUp("medium");
        } else {
            $(this).next('.listContent').slideToggle("medium");
        };
        $(this).toggleClass("expanded").toggleClass("collapsed");
	});
    
	$(".subTitleBox").click(function() {
        if($(this).hasClass("expanded")) {
            $(this).next('.subTextBox').slideUp("medium");
        } else {
            $(this).next('.subTextBox').slideToggle("medium");
        };
        $(this).toggleClass("expanded").toggleClass("collapsed");
	});
    
    $('#captcha').focus(function()
    {
        if ($(this).val() == 'code overnemen ter verificatie')
        {         
            $(this).val('');
        }
    });
    
    $contentRightHeight = $(window).height() - 183;
    $contentLeftHeight = $(window).height() - 158;
    $contentHeight = $(window).height() - 198;
    $('#contentRight').css('height', $contentRightHeight);
    $('#content').css('height', $contentHeight);
    $('#contentLeft').css('height', $contentLeftHeight);
    
    $(window).bind('resize', function() {
        $contentRightHeight = $(window).height() - 183;
        $contentLeftHeight = $(window).height() - 158;
        $contentHeight = $(window).height() - 198;
        $('#contentRight').css('height', $contentRightHeight);
        $('#content').css('height', $contentHeight);
        $('#contentLeft').css('height', $contentLeftHeight);
    });
});


