echo '<br />';
        }
        ?>
 
			<?php 
        if (bnc_show_tags() && get_the_tags()) {
            the_tags('<span class="lead">' . __('Tags', 'wptouch') . ':</span> ', ', ', '');
        }
        ?>
		</div>	
			<div class="clearer"></div>	
            <div id="entry-<?php 
        the_ID();
        ?>
" <?php 
        if (bnc_excerpt_enabled()) {
            ?>
style="display:none"<?php 
        }
        ?>
 class="mainentry <?php 
        echo $wptouch_settings['style-text-size'];
        ?>
 <?php 
        echo $wptouch_settings['style-text-justify'];
        ?>
">
 				<?php 
        the_excerpt();
        ?>
 		    <a class="read-more" href="<?php 
function wptouch_core_body_post_arrows()
{
    if (bnc_excerpt_enabled()) {
        // Down arrow
        echo '<a class="post-arrow" id="arrow-' . get_the_ID() . '" href="#" onclick="$wptouch(\'#entry-' . get_the_ID() . '\').fadeIn(500); $wptouch(\'#arrow-' . get_the_ID() . '\').hide(); $wptouch(\'#arrow-down-' . get_the_ID() . '\').show(); return false;"></a>';
        // Up arrow
        echo '<a style="display:none" class="post-arrow-down month-' . get_the_time('m') . '" id="arrow-down-' . get_the_ID() . '" href="#" onclick="$wptouch(\'#entry-' . get_the_ID() . '\').fadeOut(500); $wptouch(\'#arrow-' . get_the_ID() . '\').show(); $wptouch(\'#arrow-down-' . get_the_ID() . '\').hide(); return false;"></a>';
    }
}