Display all posts of current viewing tag

Ok .. after searching for a while I figured out what I was doing wrong. I wasn’t including custom post types in the loop. I ended up constantly with ‘not found’.

Whats the solution:

query_posts( array( 'post_type' => 'blog', 'showposts' => 3, 'orderby' => 'rand') );  if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>

And it queues all posts with the current viewing tag!

Special thanks to Sven and Kaiser!