$(document).ready(function(){
	
	$('.tfields_special').hide();
	
	$('#language_form .tfields').hide();
	$('#language_course').click(function(){
		if( $(this).is(':checked') ) {
			$('#language_form .tfields').show();
		} else {
			$('#language_form .tfields').hide();
		}
	});
	
	$('#polish_form .tfields').hide();
	$('#polish_course').click(function(){
		if( $(this).is(':checked') ) {
			$('#polish_form .tfields').show();
		} else {
			$('#polish_form .tfields').hide();
		}
	});
	
	$('#mature_form .tfields').hide();
	$('#mature_course').click(function(){
		if( $(this).is(':checked') ) {
			$('#mature_form .tfields').show();
			if( $('#lessons_category_button').is(':checked') ) {
				$('#lessons_category').show();
			} else {
				$('#lessons_category').hide();
			}
		} else {
			$('#mature_form .tfields').hide();
			$('#lessons_category').hide();
		}
	});
	
	$('#lessons_category').hide();
	$('#lessons_category_button').click(function(){
		if( $(this).is(':checked') ) {
			$('#lessons_category').show();
		} else {
			$('#lessons_category').hide();
		}
	});
	
});
