document.observe('dom:loaded', function() {
	$('biens_moteur_type_bien_rental').observe('change', manageSearchChoice);
	$('biens_moteur_type_bien_realestate').observe('change', manageSearchChoice);

	getSearchForm($('biens_moteur_type_bien_rental'));
	getSearchForm($('biens_moteur_type_bien_realestate'));
});

function manageSearchChoice(event) {
	getSearchForm(event.element());
}

function getSearchForm(elem) {
	if (elem.checked) {
		new Ajax.Updater(
			'biens_moteur_form_conteneur',
			elem.readAttribute('value'),
			{
				method: 'get',
				parameters:
				{
					format: 'html'
				},
				onCreate: function() {
					$('biens_moteur_form_conteneur').update(new Element('img', {
						'src': _fxcv4_url_root + '/' + _fxcv4_images_folder + '/' + 'real-estate/wait-search-form.gif',
						'alt': '',
						'style': 'margin-left: 300px;'}));
				},
				onComplete : function() {
					$$('div#biens_moteur_form_conteneur form dl dt label.retour_ligne_label').each(function(elem) {
						elem.up().next('dd').addClassName('retour_ligne');
					});
				}
			}
		);
	}
}