function social(type){
	$('#facebook_div').hide();	
	$('#tw').hide();
	$('#'+type+'').show();
	if(type == 'tw'){
		$('#twitter').addClass('current');
		$('#facebook').removeClass('current');
	}
	if(type == 'facebook_div'){
		$('#facebook').addClass('current');
		$('#twitter').removeClass('current');
	}
	return false;
}

function doelgroep(type){
	$('.current').hide(0, function(){
		$('#doelgroep_' + type).show(0);
	});
	$('.current').removeClass('current');
	$('#doelgroep_' + type).addClass('current');
	return false;
}
