<?php get_header(); ?>
 
<?php if (have_posts()) : ?>
		
	<?php while (have_posts()) : the_post(); ?>
     
	  <div class="post">
		<h2><a href="<?php the_permalink(); ?>" title="<?php printf(__('go read %s','lush'), get_the_title()) ?>"><?php the_title(); ?></a></h2>
  
		<div class="postcontent">
		  <p class="auth"><?php if (function_exists('time_since')) { ?> <?printf( __('Posted by %1$s %2$s ago','lush'), get_the_author(), time_since(abs(strtotime($post->post_date_gmt . " GMT")), time())) ?> <? } else { ?> <?php printf( __('Posted by %1$s at %2$s','lush'), get_the_author(), get_the_time(__('F jS, Y','lush'))); } ?></p>

		  <?php the_content(); ?>
		  <?php wp_link_pages('before=<p id="pagination"><strong>'.__('Pages:','lush').'</strong>&after=</p>&pagelink=%'); ?>
		  <p id="printer"><a id="printbutton" href="javascript:void(null);" onclick="window.print();" title="<?php _e('Print this article','lush');?>"></a><br style="clear:both;" /></p>
		</div>

		<p class="meta"><?php _e('Posted in','lush'); ?> <?php the_category(', ') ?><strong>|</strong>&nbsp;<?php if(function_exists('UTW_ShowTagsForCurrentPost')) { ?> <?php _e('Tags:','lush'); ?> <?php UTW_ShowTagsForCurrentPost("commalist"); ?> <strong>|</strong>&nbsp;<?php } ?><!--TRACKBACKS!!! --></p>
	  </div>

<?php comments_template(); ?>

<?php endwhile; endif; ?>

      <a id="naughty" href="javascript:void(null);" onclick="wtyl('on');" onmouseout="wtyl('off');">&nbsp;</a>

      <div style="visibility: hidden;" id="wtyl">&nbsp;</div>
    </div>

 <?php get_sidebar(); ?>

<?php get_footer(); ?>

