function ajaxifyPaginationLinks() {
    jQuery('#pagination a').click(function() {
        var $url = jQuery(this).attr('href');
        jQuery.ajax({
            type: 'GET',
            url: $url,
            dataType: 'html',
            success: function(html, textStatus) {
                jQuery('#item-list').html(html);
                ajaxifyPaginationLinks();
            },
            error: function(xhr, textStatus, errorThrown) {
                alert('An error occurred! ' + ( errorThrown ? errorThrown : xhr.status ));
            }
        });
        return false;
    });
}
