

$(document).ready(function() {
				$('label[@rel]').cluetip();
				tt_ht($('#nb_mois'));
				collec_chois();
});

function name_liv(me){
	var txt = $(me).val().toLowerCase();
	txt = txt.replace(/[àâä]/gi,"a")
	txt = txt.replace(/[éèêë]/gi,"e")
	txt = txt.replace(/[îï]/gi,"i")
	txt = txt.replace(/[ôö]/gi,"o")
	txt = txt.replace(/[ùûü]/gi,"u")
	txt = txt.replace(/[&~#"'\{\(\[\-\|\_\@\\\)\]\}=\?,;\.:\/\!\*\$\+<>§\%]/gi,"")
	$(me).val(txt);
	$('#livname').html(txt);
}

function collec_chois(){
	var name = $("input[@name='lacollec'][@checked]").val();
	$('#collecname').html(name);
}

function tt_ht(me){
	var result = prix_ab_1book*($(me).val()*1);
	$('#tthth').html(result.toFixed(2)+" €");
}
