var qqq = '';


$(document).ready(function() {

      $('.productthumb').live('click', function() {document.location = $(this).parents("tr").find('a').attr('href');
     });

    $('.sortbutton').click(function() {

       if (this.id == this.title + '+')
            this.id = this.title + '-';
        else
            this.id = this.title + '+';

        $('.sortbutton').each(function(){
            $(this).text($(this).attr('title'))
        });

        $(this).text(this.id)

      qqq = this.id;
      $('#loader').addClass('load');
      $('#products').load(
                 sort_url(),
                 {query: qqq},
                 function()
                 {
                     $('#loader').removeClass('load');
                 }
      );
    });
    
     

     $('a', '.pagination').live('click', function(e) {
       $('#loader').addClass('load');
        e.preventDefault();
         $('#products').load(
               this.href,
                {query: qqq},
               function()
               {
                 $('#loader').removeClass('load');
               }
          );
      });



  });
