Post type cloud like tag cloud?

How about the wp_generate_tag_cloud() function? You’ll need to feed it $tags, which is an array of objects with the link and term_id, set something like this.

$tags[]->link = $link;
$tags[]->id = $tag->term_id;

The term_id will only be used in the CSS…so don’t sweat that too much.