Ah, ok, here it is.
<?php get_header(); ?>
<div class="overflow">
<div id="page-container">
<br />
<h3><?php wp_title(); ?></h3>
<!-- Products Begins -->
<?php //query_posts( 'post_type=products'); ?>
<?php if(have_posts()) : while(have_posts()) : the_post(); ?>
<div class="product-single">
<a class="rollover" href="<?php the_permalink(); ?>"><?php the_post_thumbnail('product-thumbnail'); ?></a>
<p class="title"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a> <span class="float-right"><?php echo (get_post_meta($post->ID, 'price', true))?get_post_meta($post->ID, 'price', true):'' ?></span></p>
<p class="excerpt"><?php echo excerpt(15); ?></p>
</div>
<?php endwhile; ?>
<?php else: ?>
<h2>Oops, there's nothing to show you.</h2>
<p><a href="<?php bloginfo('url') ?>">Head on back to the homepage</a>, or try another search.</p>
<?php endif; ?>
</div>
<!-- Sidebar Begins -->
<?php include (TEMPLATEPATH . '/sidebar-store.php'); ?>
</div>
<div class="sidebar-bottom"><!--//--></div>
<?php wp_pagenavi(); ?>
<?php include (TEMPLATEPATH . '/footer-store.php'); ?>