I have a blog that I want to use on my site when you click on the BLOG link the page will show the 5 most recent post but when you click on the NEXT link it will go to a new page but will continue the to show the same 5 post and my images are missing the link and the code is below thank you in advance for your help
http://rebelvision.com/newrebel/blog
<?php query_posts('showposts=5&cat=-4,-5,-6'); ?>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div <?php post_class() ?> id="post-<?php the_ID(); ?>">
<h2>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></h2><p>
<p><?php the_time('F jS, Y') ?> <!-- by <?php the_author() ?> --></p>
<?php the_excerpt('Read the rest of this entry »'); ?><p>
<p><?php the_tags('Tags: ', ', ', '
'); ?> Posted in <?php the_category(', ') ?> </p>
</div>
<p>
<?php endwhile; ?>
<?php if (next_posts_link() || previous_posts_link()): ?>
<?php next_posts_link('« Older Entries') ?> | <?php previous_posts_link('Newer Entries »') ?>
<?php endif ?>
<?php else : ?>
<h2>Not Found</h2>
<p>Sorry, but you are looking for something that isn't here.</p>
<?php get_search_form(); ?>
<?php endif; ?>