WordPressでquery_postsで表示する記事を2列にする

最新の10件を5件ずつ2列で表示する場合です。

<div class="row-fluid"><div class="span6"><ul>
<?php $i = 1;
query_posts("posts_per_page=10");
if ( have_posts() ) :  while(have_posts()): the_post(); ?>
<li><a class="title" href="<?php the_permalink(); ?>" rel="bookmark" title="<?php _e( 'Permanent Link to', 'buddypress' ); ?> <?php the_title_attribute(); ?>"><?php the_title(); ?></a></li>
<?php
if ($i%5 == 0) { echo '</ul></div><div class="span6"><ul>'; } 
$i++;
endwhile; endif; 
wp_reset_query(); ?>
</ul></div>