<?php get_header();?>


<!-- ************************************************************* -->
			<?php if (have_posts()) : while (have_posts()) : the_post();
                        $feedback ='feedback1';
                        include (TEMPLATEPATH . "/inner_content.php");
            endwhile; else: ?>
                        <p class="error"><?php _e('Sorry, no posts matched your criteria.'); ?></p>
            <?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(); ?>