Adding paging to get_posts()

If you make paged equal to get_query_var( 'paged' ) that should do the trick. You may need to do something like $paged = get_query_var( 'paged' ) ? get_query_var( 'paged' ) : 1; and then set paged to $paged.