$(function(){
		$("[name=Recherche]").change(function(){
				init_moteur_recherche();
			});
		init_moteur_recherche();
		$("[name=Localite_ReR]").change(function(){recherche_localite()});
		$("[name=Localite_ReR]").focus(function(){$("#erreur_loc").hide()});
		$("#erreur_loc").hide();
		recherche_localite();
	});
function init_moteur_recherche()
{
	if($("[name=Recherche]:checked").val()=="louer")
	{
		$("[name=Prix_location]").show();
		$("[name=Prix_achats]").hide();
	}
	else
	{
		$("[name=Prix_location]").hide();
		$("[name=Prix_achats]").show();
	}
}
function recherche_localite()
{
	$("#Distance").hide();
	if($("[name=Localite_ReR]").val()!="")
	{
		div=$("#erreur_loc");
		div.html("<img src='"+dossier_admin+"/images/ajax-loader.gif' />");
		div.show();
		localisation=$($.ajax({url:"lib/ajax.php", async: false,  data: {action: $("[name=action_geo]").val(), geolocalisation : $("[name=Localite_ReR]").val()+" FRANCE"}}).responseXML);
		if(localisation.find("data").text()=="KO")
			div.html("<span class='mesg_erreur'>"+localisation.find("message").text()+"</span>");
		else
		{
			div.html("<input type='hidden' name='localite_ok' value='on' />");
			$("#Distance").show();
		}
	}
}
		
