Hey mike! THanks for the leads. I really appreciate it.
Trouble is, there isn't a get sidebar command in my page file?? I posted it below..
Any ideas?
<?php get_header(); ?>
<div id="content_box">
<div id="content" class="pages">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<div class="entry">
<?php the_content('<p>Read the rest of this page →</p>'); ?>
<?php link_pages('<p>Pages: ', '</p>', 'number'); ?>
</div>
<?php if ('open' == $post-> comment_status) { ?>
<p class="tagged">#comments"><?php comments_number('No Comments', '1 Comment', '% Comments'); ?></p>
<div class="clear"></div>
<?php } else { ?>
<?php } ?>
</div>
<?php endwhile; endif; ?>
<?php if ('open' == $post-> comment_status) { comments_template(); } ?>
</div>
</div>
<?php get_footer(); ?>