$(document).ready(function(){
		$("#annoncedetailcontact > h2,#annoncedetailcontact > form,#annoncedetailproximite >h2,#annoncedetailproximiteform").css({ display:"none"});	
		$("#annoncedetailcontact > p").after("<a id='hidecontact' name='emailagence' href='#'>Contacter l'agence par email [+]</a>");
		$("#annoncedetailproximite > h2").after("<a id='hideprox' name='proximite' href='#'>Recherche &agrave; proximit&eacute; [+]</a>");	
		$("#rechercherlogement").append("<input type='hidden' value='0' name='rez'/>");

		$("#hideprox").click(function(){
		if($("#annoncedetailproximiteform  ").css("display")=='none'){
			$("#annoncedetailproximiteform").show(500,function(){window.location='#proximite'})
			$("#hideprox").html("Recherche &agrave; proximit&eacute; [-]");
		}else{
			$("#annoncedetailproximiteform ").hide(100);
			$("#hideprox").html("Recherche &agrave; proximit&eacute; [+]");
			//$("#annoncedetailcontact").text("Plus de choix");
		};return false;}
		);
});//fin load

