There doesn't seem to be a simple hook for doing it, but this should work as a file edit:
functions.php (in the
construct_navbits function), above
PHP Code:
foreach($nav_array AS $nav_url => $nav_title)
add
PHP Code:
$navbits = array('/' => 'Your Site Name') + $navbits;
You'll have to change 'Your Site Name' to your homepage name, and you'll probably want some sort of condition (using THIS_SCRIPT == 'x' is propably eaisest) to prevent this from running on your homepage.