yas, sorry for the delay, here’s the way I’m running the loop for the ‘my Topics’ section on the right:
<?php query_posts('showposts=5'); ?>
<?php while (have_posts()) : the_post(); ?>
<a>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a>
<?php endwhile;?>
for the ‘my Journal’ section on the left I’m running the following loop:
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<?php if ( in_category('1') ) { ?>
<?php } else { ?>
<?php } ?>
<a>"rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a>
<?php the_time('F jS, Y'); ?> by <?php the_author() ?>
<?php comments_popup_script(450, 450); ?>
<?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?>
<?php the_content(); ?>
It seems that the random archive post comes up in both loops, but they are usually different ones.