you'll have to be more specific. You want to change the background of the whole page o only the background of the nav bar?
I believe at some point you have a cell or something containing all the nav bar. Just edit navbar.php at some point to be like this
%whatever code here%
echo "<td bgcolor=".$backcolor." blabla
%whatever following code here %
then on your page do this
$backcolor="4455AA";
<?php
require ('navbar.php');
?>
on some other page
$backcolor="44AA55";
<?php
require ('navbar.php');
?>
etc..hope I'm reading you write
Saludos
Gerardo