thanks this is my code...i think my post is an id not a class....hope you can point me in the right direction...
<div id="videos">
<?php $my_query = new WP_Query('category_name=videos&posts_per_page=2');
while ($my_query->have_posts()) : $my_query->the_post();
$do_not_duplicate = $post->ID; ?>
<div class="post <?php if ($counter == 1) { echo 'fl'; } else { echo 'fr'; $counter = 0; } ?>">
<div class="box-post-content">
<?php get_image('image',get_option('home_thumb_width'),get_option('home_thumb_height')); ?>
<h2><a title="Permanent Link to <?php the_title(); ?>" href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h2>
<p><?php echo strip_tags(get_the_excerpt(), '<a><strong>'); ?></p>
</div>
<p><span class="continue"><a title="Permanent Link to <?php the_title(); ?>" href="<?php the_permalink() ?>">Read the full story</a></span></p>
<p class="posted">Posted in <?php the_category(', ') ?><span class="comments"><?php comments_popup_link('Comments (0)', 'Comments (1)', 'Comments (%)'); ?></span></p>
</div><!--/post-->
<?php endwhile; ?>
</div>
<div id="stats">
<?php $my_query = new WP_Query('category_name=statistics&posts_per_page=2');
while ($my_query->have_posts()) : $my_query->the_post();
$do_not_duplicate = $post->ID; ?>
<div class="post <?php if ($counter == 1) { echo 'fl'; } else { echo 'fr'; $counter = 0; } ?>">
<div class="box-post-content">
<?php get_image('image',get_option('home_thumb_width'),get_option('home_thumb_height')); ?>
<h2><a title="Permanent Link to <?php the_title(); ?>" href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h2>
<p><?php echo strip_tags(get_the_excerpt(), '<a><strong>'); ?></p>
</div>
<p><span class="continue"><a title="Permanent Link to <?php the_title(); ?>" href="<?php the_permalink() ?>">Read the full story</a></span></p>
<p class="posted">Posted in <?php the_category(', ') ?><span class="comments"><?php comments_popup_link('Comments (0)', 'Comments (1)', 'Comments (%)'); ?></span></p>
</div><!--/post-->
<?php endwhile; ?>
</div>