FILTERABLE PORTFOLIO excluding one category

FILTERABLE PORTFOLIO excluding one category

Hi there,

I'm using this fantastic   FILTERABLE PORTFOLIO:  http://webdesigntunes.com/tutorial/filterable/
But now i´am trying to configure the standard filter All (*) with the exception of one category. 

I have these categories:

  1.  <nav class="primary clearfix">
                        <ul class="conteudo_corrente">
                          <li><a href="#" class="selected" data-filter="*">All</a></li>
                          <li><a href="#" data-filter=".product">PRODUCT</a></li>
                          <li><a href="#" data-filter=".packaging">GRAPHIC</a></li>
                          <li><a href="#" data-filter=".identity">WEB</a></li>
                          <li><a href="#" data-filter=".others">OTHERS</a></li>
     </ul>
                    </nav>

I'm searching for something that exclude the OTHERS category (do not show up on ALL category) only when i click in OTHERS it show the projects.

A think it is in here:

  1. <script>
  2. //Portfolio
  3. var $container = $('.portfolio');
  4. $container.isotope({
  5. filter: '*',
  6. animationOptions: {
  7. duration: 750,
  8. easing: 'linear',
  9. queue: false,
  10. }
  11. });

  12. $('nav.primary ul a').click(function(){
  13. var selector = $(this).attr('data-filter');
  14. $container.isotope({
  15. filter: selector,
  16. animationOptions: {
  17. duration: 750,
  18. easing: 'linear',
  19. queue: false,
  20. }
  21. });
  22.  return false;
  23. });

  24. var $optionSets = $('nav.primary ul'),
  25.       $optionLinks = $optionSets.find('a');
  26.  
  27.       $optionLinks.click(function(){
  28.          var $this = $(this);
  29.  // don't proceed if already selected
  30.  if ( $this.hasClass('selected') ) {
  31.      return false;
  32.  }
  33.   var $optionSet = $this.parents('nav.primary ul');
  34.   $optionSet.find('.selected').removeClass('selected');
  35.   $this.addClass('selected'); 
  36. });
  37. </script>
Any ideas?

Thank you