$(function(){
				$('#pageInscription').dialog({				
					autoOpen: false,
					width: 700,
					modal: true,
					buttons: {						
						"Fermer": function() { 
							$(this).dialog("close"); 
						} 
					}
				});
			});



function ferme(){
			$("#localisation,#prix,#age").hide()
}
function affiche(id){
	if($("#"+id).css("display")=="none"){
		ferme()
		$("#"+id).show("slow")
	}else{
		$("#"+id).hide("slow")
	}
}
function selectionne(champ,valeur,etiquette){
	document.formRecherche.elements[champ].value=valeur;
	$("#entete"+champ).html(etiquette)
	$("#"+champ).hide("slow")	
	majCPT()
}
function selectionneMateriel(champ,valeur,etiquette){
	document.formRechercheMateriel.elements[champ].value=valeur;
	$("#entete"+champ).html(etiquette)
	$("#"+champ).hide("slow")	
	majCPT()
}
function majCPT(){
	$.post("traitements/cptRechercheRapide.php",{localisation:document.formRecherche.localisation.value,prix:document.formRecherche.prix.value,age:document.formRecherche.age.value},
	function(data){
		$("#nbResults").text(data)
	}
	)
	
}

try {
var pageTracker = _gat._getTracker("UA-7014751-1");
pageTracker._trackPageview();
} catch(err) {}

var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
