<?php get_header();?>
        
<!-- ************************************************************* -->
<?php if (have_posts()) : while (have_posts()) : the_post();
	$feedback ='feedback';
	$type = 'excerpt';
	include (TEMPLATEPATH . "/inner_content.php");
endwhile; else: ?>
	<div class="error"><?php _e('Sorry, no posts matched your criteria.'); ?></div>
<?php endif; ?>

    <div class="navigation">
        <?php
            if (function_exists('wp_pagebar'))
              wp_pagebar();
            else
                {
        ?>
                    <div class="alignleft"><?php next_posts_link('&laquo; Older Entries') ?></div>
                    <div class="alignright"><?php previous_posts_link('Newer Entries &raquo;') ?></div><div style="clear:both;"></div>
        <?php 
                }
        ?>
    </div>
<!-- ************************************************************* -->
    </div><!-- close innerContent -->
<?php get_sidebar();?>
<?php get_footer(); ?>