<?php if (have_posts()) : ?>
<?php query_posts('cat=5); ?>
<?php while (have_posts()) : the_post(); ?>

<div class="post" id="post- <?php the_ID(); ?>">

Your post code here

<?php endwhile; ?>

next, previous page code here

<?php else : ?>
Not found code here
<?php endif; ?>