<?php $recent = new WP_Query("cat=1showposts=1"); while($recent->have_posts()) : $recent->the_post();?>
Featured content 1
<?php endwhile; ?>
<?php $recent = new WP_Query("cat=2showposts=1"); while($recent->have_posts()) : $recent->the_post();?>
Featured content 2
<?php endwhile; ?>
<?php $recent = new WP_Query("cat=3showposts=1"); while($recent->have_posts()) : $recent->the_post();?>
Featured content 3
<?php endwhile; ?>
<?php $recent = new WP_Query("cat=4&showposts=1"); while($recent->have_posts()) : $recent->the_post();?>
Featured content 4
<?php endwhile; ?>
<?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; ?>