I was just working on this.
I think this code may help you:
<? // the first loop ?>
<?php if (have_posts()) : ?>
<?php query_posts('cat=4&showposts=1');
while (have_posts()) : the_post(); ?>
<div class="post" id="post-<?php the_ID(); ?>">
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h2>
<div class="entry">
<?php the_excerpt('Read More &raquo;'); ?>
</div>
</div>
<?php endwhile; ?>
<? // End the first loop ?>
<? // The second loop ?>
<?php rewind_posts(); ?>
<?php query_posts('cat=1&showposts=1');
while (have_posts()) : the_post(); ?>
<div class="post" id="post-<?php the_ID(); ?>">
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h2>
<div class="entry">
<?php the_excerpt('Read More &raquo;'); ?>
</div>
</div>
<?php endwhile; ?>
<? // End the second loop ?>
Hope this helps.