function BuscaRapida(){
	this.id = null;
	this.element = null;
	var me = this;
	this.init = function(){
		this.element.find('input[name=imo_tipo], input[name=imo_conservacao], input[name=imo_cidade], input[name=imo_bairro], input[name=imo_dormitorios], input[name=imo_faixa]').bind('change', function(){
			var json = new Array();
			$(this).parents('.BuscaRapida:first').find('input[name^=imo_][type=hidden]').each(function(){
				json.push('set'+ucfirst($(this).attr('name'))+'Value='+$(this).val());
			});
			
			$.ajax({
				type: 'POST',
				url: 'loadComponent.class.php',
				data: 'class=BuscaRapida&'+json.join('&'),
				success: function( html ){
					//html=html.replaceAll('\\.\\.\\/\\.\\.\\/','');
					me.element.parent()
						.html( html )
					;
				}
			});
		})
	}
}