$j = jQuery.noConflict();

$j(document).ready(function(){
	$j('#inschrijflink').click(function(){
		$j('#inschrijf_mededeling').css('display', 'none');
		$j('#verplicht_ster').css('display', 'block');
		$j('#inschrijven').css('display', 'block');
	});
	
	$j('#carousel').jcarousel({
		scroll: 1
	});
	
	$j('a.colorbox').colorbox({
		scalePhotos: true,
		maxWidth: 650,
		maxHeight: 650
	});
});

function switch_leden(which)
{
	var lid 	= document.getElementById('lid');
	var patient = document.getElementById('patient');
	
	switch(which)
	{
		case 'lid': 		
							lidclass = 'active';
							patientclass = 'inactive';
							break; 
			
		case 'patient':		
							lidclass = 'inactive';
							patientclass = 'active';
							break; 
	}
	
	lid.className = lidclass;
	patient.className = patientclass;
}

