Ahh well isn’t that just lovely.
I found a work around, in case anyone is in my situation. But if you can, upgrading is a much better choice.
{exp:weblog:entries weblog='page'}
<?php $first = TRUE ?>
{categories}
<?php if ($first): ?>{embed='templates/_header' title='{title}' flash='true' category='{category_name}'}<?php endif ?>
<?php $first = FALSE ?>
{/categories}
{/exp:weblog:entries}
If anyone needs a certain number, this works. It’s kind of like a demented for loop.
{exp:weblog:entries weblog='page'}
<?php $i = 0; $limit = 10; ?>
{categories}
<?php if ($i++ < $limit): ?>
{!-- code here --}
<?php endif ?>
{/categories}
{/exp:weblog:entries}
Thanks Ingmar Greil, for taking the time to help me out.