// $Id$

// Global killswitch
if (Drupal.jsEnabled) {
  $(document).ready(function(){
    $('a.product-pager').click(function(){
      var voteSaved = function (data) {
        var result = Drupal.parseJson(data);
				$('div.listing-product').fadeOut('slow').html(result['product-content']).fadeIn('slow');
				//$('div.listing-product').fadeOut('slow').fadeIn('slow');
      }
      $.get(this.href, null, voteSaved);
      return false;
    });
  });
}
