function _sort_brand(Object, href) {
	var query = href.split("/");
	var http = 'mode=' + query[3] + '&id=' + query[4] + '&brand=' + Object.value + '&http=' + href;
	var ajax_path = query[0] + '//' + query[2] + "/ajax_bfilter.php"
	showLoading(true);

	$.ajax({
		type: "GET",
		url: ajax_path,
		data: http,
		success: function(msg){
			showLoading(false);
			$("#objects_block").html(msg);
		}
	});
}
