$().ready(function() {



	$("#cities").autocomplete("ajax/sugestie/miasta/", {
		width : 260,
		multiple : true,
		mustMatch : true,
		autoFill : true
	});

	$("#districts").autocomplete("ajax/sugestie/dzielnice/", {
		width : 260,
		multiple : true,
		mustMatch : true,
		autoFill : true
	});

	$("#cities").setOptions( {
		max : 18
	});

	$("#districts").setOptions( {
		max : 40
	});
	
	$("#cena_od,#cena_do").focus(function() {
		$(this).val($(this).val().replace(/ /gi, ''));
	});

	$("#cena_od,#cena_do").blur(function() {
		$(this).val((number_format($(this).val(), ' ')));
	});

});

function number_format(l, r) {
	w = '';
	while (a = ~~(l / 1e3)) {
		w = r + ((b = l % 1e3) > 9 ? (b > 99 ? '' : '0') : '00') + b + w;
		l = a
	}
	return l + w
}
