<?php get_header(); ?>

  <div class="featured-post">
  	<div id="featured-ribbon"></div>
	<?php $my_query = new WP_Query('category_name=Featured&showposts=1');
    while ($my_query->have_posts()) : $my_query->the_post();
    $do_not_duplicate = $post->ID; ?>    			
                <div class="post-title">
                	<h1><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h1>
                	<span class="post-cat">Posted in <?php the_category(', ') ?> on <?php the_time('j F Y') ?></span>
                </div>
                <div class="entry">
                    <?php the_content('<span class="moretext">Read more</span>'); ?>
                </div> 
    <?php endwhile; ?>
</div>

  <div id="content">
  
  <div class="normal_posts">
	<?php
    $limit = get_option('posts_per_page');
    query_posts('showposts=' . $limit . '&paged=' . $paged .'&cat=-4'); ?>
    <?php if (have_posts()) : ?>
    <?php while (have_posts()) : the_post(); ?>

<div class="post" id="post-<?php the_ID(); ?>">    	
    	<div class="post-header"></div>
        <div class="post-content">
        	<div class="post-date"><span class="post-month"><?php the_time('M') ?></span><span class="post-day"><?php the_time('d') ?></span></div>	  
	  		<div class="post-title">
                <h1><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h1>
                <span class="post-cat">Posted in <?php the_category(', ') ?></span>
	  		</div>
            <div class="entry">
            	<?php the_content('<span class="moretext">Read more</span>'); ?>
            </div>
            <div class="post-footer"><span class="post-comments"><?php comments_popup_link('No Comments &#187;', '1 Comment &#187;', '% Comments &#187;'); ?></span></div>
      </div>
      <div class="post-bottom"></div>
	</div><!--/post -->
    	
	<?php endwhile; ?>
	
	<div class="navigation">
	  <span class="previous-entries"><?php next_posts_link('&#171; Previous Entries') ?></span> <span class="next-entries"><?php previous_posts_link('Next Entries &#187;') ?></span>
	</div>
	
	<?php else : ?>
	
		<h2>Not Found</h2>
		<p>Sorry, but you are looking for something that isn't here.</p>
		
  <?php endif; ?>
</div>

	
  </div><!--/content -->
  
<?php get_sidebar(); ?>

<?php get_footer(); ?>
