jQuery().ready(function(){
	$('#searchstr').focus(function(){
		if ($(this).val() == 'Rechercher') {
			$(this).val("");
	 	}
	});
	$('#searchstr').blur(function(){
		if ($(this).val() == '') {
			$(this).val("Rechercher");
	 	}
	});
	$("#main .questions .reponse").hide();
	$("#main .adresses .reponse").hide();
	$(".questions li a:not(.reponse a)").click(function() {
		lid = $(this).attr("id").substring(1);
		$("#r" + lid).toggle();
		return false;
	});
	$(".adresses li a:not(.reponse a)").click(function() {
		lid = $(this).attr("id").substring(1);
		$("#r" + lid).toggle();
		return false;
	});
});