$j(document).ready(function()
{

  

  // This replaces the 'continue reading' generated by WordPress in the news aggregation feeds
  $j('.feed-excerpt a') .html(' Continuar leyendo ...');

  

  //  Moved this from terracycle-new.js because the #quantity value is now configurable

  $j('#quantity') .change(function()
  {
    var $cashCost = $j('#quantity') .val();
    if ($cashCost < 1000)
    {
      $j('.points-index-redeem') .attr('disabled','disabled');
      $j('.cash-alert') .fadeIn('fast');
    }
    if ($cashCost >= 1000)
    {
      $j('.cash-alert') .fadeOut('fast');
      $j('.points-index-redeem') .removeAttr('disabled');
    }
  });

});
// File Name: check_admin User: 
