get posts from 2 categories. (2 posts)

Now try this, surely it will work

query_posts(“cat=1, 2&showposts=5&post_type=item”);

while(have_posts()) : the_post();

echo $title = get_the_title();
echo $content = get_the_content();

endwhile;