<?php 
if ( have_posts() ) while ( have_posts() ) : the_post(); 
	global $post,$wpdb,$prefix;
	 $postMetaFields = get_post_custom($post->ID);
?>
	<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
		<div class="entry-title" id="banner">
			<h1><?php the_title();?></h1>
		</div>
		<?php
 		if($postMetaFields["{$prefix}location_box_show"][0]):
		?>
		<div style="margin-top: 20px; padding: 0 5px 20px;">
			<div class="mapBoxContainer">
				<div style="float: left; width: 320px;">
					<h1 class="mapBoxHeading"><?php echo $postMetaFields["{$prefix}location_box_heading"][0]; ?></h1>
					<div class="mapBoxContent"><?php echo $postMetaFields["{$prefix}location_box_content"][0]; ?></div>
				</div>
				<?php if(!empty($postMetaFields["{$prefix}location_box_map_lat"][0]) && !empty($postMetaFields["{$prefix}location_box_map_lon"][0])): ?>
				<div style="float: right; width: 480px;">
				<iframe width="480" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="https://maps.google.com/maps?amp;ie=UTF8&amp;ll=<?php echo $postMetaFields["{$prefix}location_box_map_lat"][0]; ?>,<?php echo $postMetaFields["{$prefix}location_box_map_lon"][0]; ?>&amp;spn=0.00116,0.002626&amp;t=m&amp;z=11&amp;output=embed"></iframe>
				<?php /*?><iframe width="480" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="https://maps.google.com/maps?q=<?php echo $postMetaFields["{$prefix}location_box_map_lat"][0]; ?>,<?php echo $postMetaFields["{$prefix}location_box_map_lon"][0]; ?>&amp;ie=UTF8&amp;ll=<?php echo $postMetaFields["{$prefix}location_box_map_lat"][0]; ?>,<?php echo $postMetaFields["{$prefix}location_box_map_lon"][0]; ?>&amp;spn=0.00116,0.002626&amp;t=m&amp;z=10&amp;output=embed"></iframe><?php */?><?php /*?><br /><small><a href="https://maps.google.com/maps?q=<?php echo $postMetaFields["{$prefix}location_box_map_lat"][0]; ?>,<?php echo $postMetaFields["{$prefix}location_box_map_lon"][0]; ?>&amp;ie=UTF8&amp;ll=<?php echo $postMetaFields["{$prefix}location_box_map_lat"][0]; ?>,<?php echo $postMetaFields["{$prefix}location_box_map_lon"][0]; ?>&amp;spn=0.00116,0.002626&amp;t=m&amp;z=14&amp;source=embed" style="color:#0000FF;text-align:left">View Larger Map</a></small><?php */?>
				<div class="mapText"><?php echo $postMetaFields["{$prefix}location_box_map_text"][0]; ?></div>
				</div>
				<?php endif;?>
				<div style="clear: both;">&nbsp;</div>
			</div>
		</div>
		<?php endif;?>
		<div class="entry-content">
			<?php the_content(); ?>
			<?php //wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'nmw' ), 'after' => '</div>' ) ); ?>
			<?php //edit_post_link( __( 'Edit', 'nmw' ), '<span class="edit-link">', '</span>' ); ?>
		</div><!-- .entry-content -->
	</div><!-- #post-## -->
	<?php //comments_template( '', true ); ?>
<?php endwhile; // end of the loop. ?>
