It still doesn’t seem to be working for me in WP3 b1 and using v0.5.2 of your plugin. Great little plugin BTW.
You could do a simple $x count.
Use something like $x = 0;
<?php $x = 0; while have_posts() : the_post()
...
$x++;
endwhile; ?>
then
<?php if ($x>9) { ?>
Navigation bar code here
<?php } ?>
That should work how you want it to.