<?php // This file is shown when viewing a single POST 
get_header(); ?>
<div class="main">
			<div class="leftmain" id="sizer">
				<div class="leftcol">
					<div class="leftnav navside">
						<div class="inner">
							<h1>Recent Health Articles</h1>							
							<ul>
								<?php wp_get_archives('type=postbypost'); ?>
							</ul>
						</div><!-- /inner -->
					</div><!-- /leftnav -->
					<div class="leftnav navside">
						<div class="inner">
							<h1>Navigation</h1>							
							<ul>
								<li><a class="snav-healthnotes" href="<?php echo $tPage['root']; ?>healthnotes" title="Medical health notes tailored to your personal needs">Upstate Health Blog</a></li> 
								<li><a class="snav-infusion" href="<?php echo $tPage['root']; ?>infusion-support" title="Infusion Support Specialists">Infusion</a></li>
								<li><a class="snav-respiratory" href="<?php echo $tPage['root']; ?>respiratory-support" title="Respiratory Support Specialists">Respiratory</a></li>
								<li><a class="snav-dme" href="<?php echo $tPage['root']; ?>durable-medical-equipment-dme" title="Durable Medical Equipment(DME)">Durable Medical Equipment</a></li>
								<li><a class="snav-vamp" href="<?php echo $tPage['root']; ?>vascular-access-management-vamp" title="Vascular Access Management Program">Vascular Access</a></li>
								<li><a class="snav-pharmacy" href="<?php echo $tPage['root']; ?>specialty-pharmacy" title="Specialty Pharmacy">Specialty Pharmacy</a></li>
								<li><a class="snav-nutrition" href="<?php echo $tPage['root']; ?>nutrition-support-team" title="Nutrition Support Team">Nutrition Services</a></li>
								<li><a class="snav-about" href="<?php echo $tPage['root']; ?>about-upstate-homecare" title="About Upstate HomeCare">About Us</a></li>
								<li><a style="border-right:none" class="snav-contact" href="<?php echo $tPage['root']; ?>contact-upstate-homecare" title="Contact Upstate HomeCare">Contact Us</a></li>
							</ul>
						</div><!-- /inner -->
					</div><!-- /leftnav -->
					<div class="c sidebox">
						<img src="<?php echo $tPage['root']; ?>images/upstate-homecare-seal.png" alt="Celebrating over 20 years in service - Established in 1985" />
					</div>
				</div><!-- /leftcol -->
				<div class="content">
					<div class="bread">
						<a href="<?php echo $tPage['root']; ?>" title="Return to Upstate HomeCare Main Page">Home</a>&nbsp;&nbsp;
						<img src="<?php echo $tPage['root']; ?>images/arrow-white.jpg" alt="Upstate Home Care Bread Crumbs" />&nbsp;&nbsp;
						<a href="<?php echo $tPage['root']; ?>healthnotes" title="Upstate Health Blog">Upstate Health Blog</a>&nbsp;&nbsp;
						<img src="<?php echo $tPage['root']; ?>images/arrow-white.jpg" alt="Upstate Home Care Bread Crumbs" />&nbsp;&nbsp;
						<?php the_title(); ?>
					</div>					
					<div class="contentinner">
					
<!-- WORDPRESS CONTENT -->
<div id="container">
	<?php if(have_posts()) : ?><?php while(have_posts()) : the_post(); ?>
	
		<div class="post">
		
			<h2><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h2>
			
			<div class="entry">
			
				<?php the_content(); ?>
				
				<?php link_pages('<p><strong>Pages:</strong> ', '</p>', 'number'); ?>
				
				<p class="postmetadata">
				
<?php _e('Filed under&#58;'); ?> <?php the_category(', ') ?> <?php _e('by'); ?> <?php  the_author(); ?><br />
<?php comments_popup_link('No Comments &#187;', '1 Comment &#187;', '% Comments &#187;'); ?> <?php edit_post_link('Edit', ' &#124; ', ''); ?>

				</p><!-- /postmetadata -->
			</div><!-- /entry -->
		</div><!-- /post -->
	<?php endwhile; ?>
	
	<div class="navigation">
	
		<p><?php previous_post_link('&laquo; %link') ?></p><p><?php next_post_link(' %link &raquo;') ?></p>
		
	</div><!-- /navigation -->

	<?php else : ?>

	<div class="post" id="post-<?php the_ID(); ?>">
	
		<h2><?php _e('Not Found'); ?></h2>
		
	</div><!-- /post -->
	
	<?php endif; ?>
	
</div><!-- /#container -->

<!-- /WORDPRESS CONTENT -->
					</div><!-- /contentinner -->
				</div><!-- /content -->
			</div><!-- /leftmain -->
			<div class="rightmain">
				<?php get_sidebar(); ?>
			</div><!-- /rightmain -->
		</div><!-- /main -->
<?php get_footer(); ?>
