$(document).ready
(
function()
{
	$('.faqbeschrijving').hide();
	$('#faqbeschrijving1').show();
	$('#faqvraag1').addClass('active');
	$('#faqvraag1').parent().addClass('active');
	//als er op een vraag geklikt wordt moeten alle divs met de class .faqbeschrijving niet getoond worden
	$('.faqvraag').click(function() {
		$('.faqbeschrijving').hide();
		$('div.content .active').removeClass('active');
		$('#faqvraag1').removeClass('active');
		$('#faqvraag2').removeClass('active');
		$('#faqvraag3').removeClass('active');
		$('#faqvraag4').removeClass('active');
		$('#faqvraag1').parent().removeClass('active');
		$('#faqvraag2').parent().removeClass('active');
		$('#faqvraag3').parent().removeClass('active');
		$('#faqvraag4').parent().removeClass('active');
		$(this).addClass('active');
		$(this).parent().addClass('active');
		var id = $(this).attr('id');
		id = id.replace('faqvraag','');
		$('#faqbeschrijving'+id).show();
		return false;
	});	
}
);
