﻿// JS Page Préfon vous répond

jQuery(function() {
	if($.trim($('#prefon_vous_repond_message').val()) != '' && $('#prefon_vous_repond_categorie').val() != '')
	{
		$('#page_1').hide();
		$('#page_2').show();
		$('div.repriseQuestion').text($('#prefon_vous_repond_message').val());
		
		if($('#prefon_vous_repond_affiliation_0').is(':checked'))
		{
			$('#champsAffilie').show();
		}else{
			$('#champsAffilie').hide();
			$('#prefon_vous_repond_numero_adherent').val("");
			$('#prefon_vous_repond_numero_securite_sociale').val("");
		}
		
	}else{
		$('#page_2').hide();
		if($('#prefon_vous_repond_affiliation_0').is(':checked'))
		{
			$('#champsAffilie').show();
		}else{
			$('#champsAffilie').hide();
			$('#prefon_vous_repond_numero_adherent').val("");
			$('#prefon_vous_repond_numero_securite_sociale').val("");
		}
	}
	$('ul.erreurCategorie').hide();
	$('ul.erreurQuestion').hide();
	$('p.bouton img').click(function(){
		if($.trim($('#prefon_vous_repond_message').val()) != '' && $('#prefon_vous_repond_categorie').val() != '')
		{
			$('#page_1').hide();
			$('ul.erreurCategorie').hide();
			$('ul.erreurMessage').hide();
			$('#page_2').show();
			$('div.repriseQuestion').text($('#prefon_vous_repond_message').val());
		}
		
		if($.trim($('#prefon_vous_repond_message').val()) == '')
		{
			$('ul.erreurQuestion').show();
		}else{
			$('ul.erreurQuestion').hide();
		}
		
		if($.trim($('#prefon_vous_repond_categorie').val()) == '')
		{
			$('ul.erreurCategorie').show();
		}else{
			$('ul.erreurCategorie').hide();
		}
	});
	$('p.modifierQuestion').click(function(){
		$('#page_1').show();
		$('#page_2').hide();
	});
	
	$('#infosPrefonRepond').hide();
	$('#pictoHelp').hover(
		function() {
			$('#infosPrefonRepond').show();
		},
		function() {
			$('#infosPrefonRepond').hover(
				function() {
					$('#infosPrefonRepond').show();
				},
				function() {
					$('#infosPrefonRepond').hide();
				}
			);
		}
	);
	$('#prefon_vous_repond_affiliation_0').click(function(){
		$('#champsAffilie').show();
	});
	$('#prefon_vous_repond_affiliation_1').click(function(){
		$('#champsAffilie').hide();
		$('#prefon_vous_repond_numero_adherent').val("");
		$('#prefon_vous_repond_numero_securite_sociale').val("");
	});
	
})

