/**
 * Category manipulation
 * 
 */
var Category = {

  /**
   * Sets values of price filter fields and submits
   * 
   */
  setPriceFilters: function (from, to) 
  {
    jQuery('#sf_fuero_commerce_product_price_filters_price_from').val(from);
    jQuery('#sf_fuero_commerce_product_price_filters_price_to').val(to);
    jQuery('#productPriceFilterForm').submit();
  },
  
  /**
   * Sets the current 
   * 
   */
  setSorting: function (value)
  {
	jQuery('#productSortingForm').submit();
  }
		
};