$.fn.productListAjaxPaginator = function() {
    var $container = $(this);
    $('.pagination a').live("click", function() {
        $.manageAjax.add('defaultQueue', {
            success: function(response) {
                $container.html(response);
            },
            url: this.href
        });
        return false;
    });
};

