This is your code
<?php
switch(id){
case 'news':
//what you want for news in here.
break;
case 'about':
//what you want on the about page.
break;
default:
//what text you want to display for default.
break;
}
?>
I'm gonna bet it hits default everytime.