document.observe('dom:loaded', function() {
	$$('select.arkianeAjaxTrigger').invoke('observe', 'change', observeArkianeAjax);
	observeArkianeAjax();
});

function observeArkianeAjax(event) {
	if ($('arkiane_recherche_nb_resultats')) {
		new Ajax.Request(
			_fxcv4_url_root + '/direct/arkiane/search-count/site_id/' + _fxcv4_site_id,
			{
				method: 'get',
				parameters: {
					'format': 'html',
					'arkiane_offer_date_id': $F('arkiane_offer_date_id'),
					'arkiane_offer_resort_id': $F('arkiane_offer_resort_id'),
					'arkiane_offer_personne_id': $F('arkiane_offer_personne_id'),
					'arkiane_offer_lasting_id': $F('arkiane_offer_lasting_id'),
					'arkiane_offer_type_id': $F('arkiane_offer_type_id')
				},
				onCreate: function() {
					$('arkiane_recherche_nb_resultats').update('');
					$('arkiane_recherche_nb_resultats').insert(new Element('img', {
						'src': _fxcv4_url_root + '/' + _fxcv4_images_folder + '/cimalpes-immobilier/arkiane/ajax-loader.gif',
						'alt': ''
					}));
				},
				onComplete: function() {
					
				},
				onSuccess: function(transport) {
					$('arkiane_recherche_nb_resultats').update(transport.responseText);
					
				},
				onFailure: function() {
					alert('An error has occured, the request failed.');
					$('arkiane_recherche_nb_resultats').update('');
				}
			}
		);
	}
}
