I don't totally understand the MTSQL code posted above. However, I also use MTGlobalEntries to post 3 weblogs to my main weblog, I could easily add the quicklinks the way kottke does it.
I am combining several different content styles, especially the photoblog which uses a very different template. Here's the code that I use:
CODE
<MTMacroApply>
<MTGlobalEntries include_blogs="1,8,9" lastn="7">
<MTIfEqual a="[MTBlogID]" b="8" numeric="1">
<MTOtherBlog blog_id="1">
<$MTInclude module="Post Header"$>
</MTOtherBlog>
<img src="<MTBlogURL><MTEntryCategory dirify="1">/<$MTEntryBody$>.jpg" alt="<MTEntryMore encode_html="1">" />
<br /><br />
<div class="tinytext"> <$MTEntryMore$> </div>
<br />
<MTOtherBlog blog_id="1">
<$MTInclude module="Post Footer"$>
</MTOtherBlog> <MTEntryCategories>
| <a href="<$MTCategoryArchiveLink$>"><$MTCategoryLabel$></a>
</MTEntryCategories>
</div>
</MTIfEqual>
<MTIfEqual a="[MTBlogID]" b="1" numeric="1">
<MTOtherBlog blog_id="1">
<$MTInclude module="Post Header"$>
<$MTInclude module="Post Body"$>
<$MTInclude module="Post Footer"$>
</MTOtherBlog>
<MTEntryCategories>
| <a href="<$MTCategoryArchiveLink$>"><$MTCategoryLabel$></a>
</MTEntryCategories>
</div>
</MTIfEqual>
<MTIfEqual a="[MTBlogID]" b="9" numeric="1">
<MTOtherBlog blog_id="1">
<$MTInclude module="Post Header"$>
<$MTInclude module="Post Body"$>
<$MTInclude module="Post Footer"$>
</MTOtherBlog>
<MTEntryCategories>
| <$MTCategoryLabel$>
</MTEntryCategories>
</div>
</MTIfEqual>
</MTGlobalEntries>
</MTMacroApply>
as you can see, blog ID 8 (the top one) is the furthest from the other two, but both have slight differences. Adding my blogroll and showing its extended entry field, so that it was interspersed into the main weblog, would be only a minor issue, by adding another MTIfEqual statement and then creating how I want it to look. =)
If I wanted it indented the way he has his indented, I would simply add to my stylesheet a div container with a right and left margin (to emulate blockquote) and surround the entry code in that div. =)
If you want, I can write it up more explicity...
Just another option, hope it helps...