$(document).ready(function(){
    $('#paginator > a').live('click', function(){$.post('../inc/reviews.inc.php', {provider_id: provider_id, page: $(this).html()}, getPage); return false;});
});

function getPage(response) {
    $('#reviews').html(response);
    return false;
}