function filterProducts() {

	var cat_id = $('#filter_category').children("option:selected").val();
	var brand_id = $('#filter_brand').children("option:selected").val();
	var current_order = $('#filter_order').children("option:selected").val();
	var prop_id = $('#filter_property').val();
	var prop_value = $('#filter_property_value').val();
	
	jQuery.get('index.php?action=products_list&filter_property[' + prop_id + ']=' + prop_value, {'_AJAX': 1,'filter[category_id]':cat_id, 'filter[brand_id]':brand_id, 'order':current_order}, function(data) {
		$('#list_product_big_container').html(data);
	})

}

function setProductFilter(prop_id, prop_value) {
	prop_id = parseInt(prop_id);
	//prop_value= URLEncode(prop_value);
	
	$('#filter_property').val(prop_id);
	$('#filter_property_value').val(prop_value);
	
	filterProducts();
}