<?php
query_posts('cat=4');
while (have_posts()) : the_post(); ?>
<a href="<?php the_permalink(); ?>">
<div class="post-prew">
<img src=<?php the_post_thumbnail(); ?></img>
</div>
</a>
<?php
endwhile;
?>