Remove 5 latest posts from the loop

I don’t know if WP has a built in feature for it’s query but you could do something like this:

$count = 0;
if(have_posts()) : while (have_posts()) : the_post();
if ($count < 4 ) { $count++; }
else { ... your blogroll code ... } 
endwhile; endif;