Adding default pagination to wordpress loop

As per comments the default pagination would go like this (insert just before wp_reset_query)(docs):

next_posts_link( 'Older Entries', $top_query->max_num_pages );
previous_posts_link( 'Newer Entries' );

Also, as noted in comments, in your query replace showposts with posts_per_page.