$(document).ready(function(){
	initInscriptionNews();
	initAccesCollec();
	initRecopie();
	Nifty("#cdr_rech", "transparent small tl bl");
});


function initInscriptionNews(){
	$("#inscription_news").click(function(){
		$(this).val("");
	});
}


function initAccesCollec(){
	$("#acces_collec").change(function(){
		var mavaleur = $(this).val();
		document.location.href="/front_navigation/acces_par_collection/"+mavaleur;
	});
}


function initRecopie(){
	$("#recopie_form").click(function(){
		if($(this).attr("checked")){
			$("#civ_l").val($("#civ_f").val());
			$("#nom_l").val($("#nom_f").val());
			$("#prenom_l").val($("#prenom_f").val());
			$("#adr_l").val($("#adr_f").val());
			$("#code_l").val($("#code_f").val());
			$("#ville_l").val($("#ville_f").val());
			$("#pays_f").val($("#pays_l").val());
			$("#tel_l").val($("#tel_f").val());
			$("#mail_l").val($("#mail_f").val());
		}
	});
}
