rendered paste body<!-- loop in the thumbnails -->
<?php
$news = new WP_Query();
$news->query('cat=5');
while($news->have_posts()) : $news->the_post();
?>
<div class="grid_8 newsbox">
<div class="news-thumbnail"><?php the_post_thumbnail(); ?></div>
<div class="news-description">
<a class="news-link" href="<?php the_permalink() ?>" rel="<?php the_ID(); ?>" title="Nyhet - <?php the_title_attribute(); ?>">
<?php the_title('<p class="news-titel">', '</p>'); ?>
<div class="news-excerpt"><?php the_excerpt(); ?></div>
<p class="news-date"><?php the_time('F j, Y'); ?></p>
</a>
</div> <!-- end newsdescripton -->
<div class="news-tag"></div>
</div> <!-- end newsbox -->
<?php endwhile; ?>
<!-- stop looping in thumbnails -->