If you wish to create a new template assigned to the variable $site_navbar, and want it to be used inside the header template, you'll need to place the eval assignment ABOVE the $header.
So in global.php, you should have something like:
PHP Code:
eval('$site_navbar = "' . fetch_template('site_navbar') . '";');
// Custom navbar
eval('$headinclude = "' . fetch_template('headinclude') . '";');
eval('$header = "' . fetch_template('header') . '";');
eval('$footer = "' . fetch_template('footer') . '";');
Speaking of phpinclude, I'm not too keen on how enthused people are with it. I think all PHP should stick to the files, and not be muddled with the vBulletin template system (this doesn't include vB conditionals, which although uses PHP functions, the concept is a core component of many CMS systems out there and considered acceptable).