$navbits and $navbar are defined before the page is displayed, whereas php_include code is output at the end of the header template. Try putting it near the end of global.php.
I'm gonna go test this to double check, so I'll be back in a few mins.
---
Okay I got it working putting
PHP Code:
eval('$navbar2 = "' . fetch_template('navbar2') . '";');
Just below (global.php)
PHP Code:
eval('$header = "' . fetch_template('header') . '";');
Also, it seems I have to add $navbar2 into every template I want it used in... The easiest way I see doing this is a find replace: replace every instance of "$footer" and replace it with "$navbar2 $footer".
(well replace every navbar2 with navbar_breadcrumb, as that is what you used).