$(document).ready(function(){
	$("input[name=fld_Soort]").click(function(){	
		
		if ($(this).val() == 'C'){
			if ($(this).parents('form').find('li.temp').is(':visible'))
			$(this).parents('form').find('li.temp').slideUp();
		}
		else if ($(this).val() == 'T'){
			if (!$(this).parents('form').find('li.temp').is(':visible'))
				$(this).parents('form').find('li.temp').slideDown();
		} 
	})	 						
	$('#fld_beschikbaar').datepicker({dateFormat:'yy-mm-dd'});
});