<!-- JUEGOS ALEATORIOS -->
<div class="widget2">
<h3>Otros Juegos</h3>
<div class="widgetbox2">
<?php
query_posts(array('orderby' => 'rand', 'showposts' => 5));
if (have_posts()) : while (have_posts()) : the_post(); ?>
<ul class="tabs">
<li>
<a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>"><img src="<?php $values = get_post_custom_values("thumb"); echo $values[0]; ?>"alt="<?php the_title(); ?>" class="left" width="100px" height="100px" style="margin: 5px;"></a>
<a title="<?php the_title(); ?>" href="<?php the_permalink() ?>"><?php the_title(); ?></a>
<p><?php the_excerpt(); ?></p>
</li>
</ul>
<?php endwhile; ?>
<?php endif; ?>
</div>
</div>
<!-- FIN JUEGOS ALEATORIOS -->