var Agence = new function()
{
  var options;
  
  this.init = function(opt)
  {
		Agence.options = opt;
		
		var $box = $('div.recherche_agence');
		
    if (!$box.length)
		{
			return;
		}
		
		var
		$submit = $box.find('li.bt_submit > input'),
		$form = $box.find('form'),
		$inputs = $box.find('select, input:radio');
		
		$submit.parent().hide();
		
		$inputs.bind('change', function() {
			$form.submit();
		});
  };
}

Dms.registerController(Agence);
