Why won’t pagination work?

probably coz you override the default query and forgot to take care of pagination 🙂
change the code this way:

$page = isset(get_query_var('paged')) ? get_query_var('paged') : 1;
$args = array( 'numberposts' => $numposts, 'paged' =>  $paged );

This should do the work