$(document).ready(function() {
    $("#clinics-table").dataTable({
        bAutoWidth: true,
        bFilter: false,
        bLengthChange: false,
        bPaginate: true,
        bSort: false,
        iDisplayLength: 5,
        sPaginationType: 'two_button',
        oLanguage: {
            sInfo: 'Showing _START_ to _END_ of _TOTAL_ offices'
        },
        fnFooterCallback: function() {
            $('#clinics-table_next').html('<a href="javascript:void(0)">Next &gt;</a>');
            $('#clinics-table_previous').html('<a href="javascript:void(0)">&lt; Previous</a>');
        }
    });
});