$(document).ready(function() {
	if ($('#choixProgramme').val() != 7){
		$('#optionGlaceExterieur').parent().parent().hide();
	} else {
		$('#optionGlaceExterieur').parent().parent().show();
	}
	
	if ($('input[name="choixPaiement"]').val() == 1) {
		$('input[name="choixVersement"]').each(function() {
			if ($(this).val() == 1) {
				$(this).attr('checked', true);
			} else {
				$(this).parent().parent().hide();
			}
		});
	} else {
		$('input[name="choixVersement"]').each(function() {
			$(this).parent().parent().show();
		});
	}
	$('input[name="choixPaiement"]').click(function() {
		if ($(this).val() == 1) {
			$('input[name="choixVersement"]').each(function() {
				if ($(this).val() == 1) {
					$(this).attr('checked', true);
				} else {
					$(this).parent().parent().hide();
				}
			});
		} else {
			$('input[name="choixVersement"]').each(function() {
				$(this).parent().parent().show();
			});
		}
	});
	
	//Glace 
	$('#choixProgramme').change(function() {
		if ($(this).val() == 1 || $(this).val() == 5  || $(this).val() == 6 || $(this).val() == 7 ){
			$('#optionGlace').attr('checked', false);
			$('#optionGlace').parent().hide();
		} else {
			$('#optionGlace').parent().show();
		}
		
		if ($(this).val() != 7){
			$('#optionGlaceExterieur').parent().parent().hide();
		} else {
			$('#optionGlaceExterieur').parent().parent().show();
		}
	});
	
	if ($('#choixProgramme').val() == 1 || $('#choixProgramme').val() == 5  || $('#choixProgramme').val() == 6   || $('#choixProgramme').val() == 7 ){
		$('#optionGlace').attr('checked', false);
		$('#optionGlace').parent().hide();
	} else {
		$('#optionGlace').parent().show();
	}
});

