<?php get_header(); ?>

<div id="content">

<?php include (TEMPLATEPATH . '/glide.php'); ?>

<div id="myslides">
<?php include (TEMPLATEPATH . "/slide.php"); ?>
</div>
<?php include (TEMPLATEPATH . "/tab.php"); ?>
<div id="lpst"></div>
	<?php if (have_posts()) : ?>

		<?php while (have_posts()) : the_post(); ?>

			<div class="post" id="post-<?php the_ID(); ?>">

<?php $screen = get_post_meta($post->ID,'screen', true); ?>
<img src="<?php echo ($screen); ?>" width="80" height="55" alt=""  />
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h2>
<div class="date"> <span class="authr"> Posted by <?php the_author(); ?></span> </div>	



<div class="mentry">

		<?php the_excerpt(); ?> 
		<div class="clear"></div>

</div>



<div class="postinfo">
					<div class="time"><?php the_time('F - j - Y'); ?> </div>
					<div class="rmore"><a href="<?php the_permalink() ?>">Read more</a> </div>
</div>

</div>
		<?php endwhile; ?>
	
		<div class="navigation">
			<div class="alignleft"><?php next_posts_link('&laquo; Older Entries') ?></div>
			<div class="alignright"><?php previous_posts_link('Newer Entries &raquo;') ?></div> 
		</div>

	<?php else : ?>

		<div class="post">
			<h1 class="title">Not Found</h1>
			<p>You are looking for something that isn't here.</p>
		</div>

	<?php endif; ?>	

</div>

<?php get_sidebar(); ?>

<?php get_footer(); ?>