I think you're complicating things too much, can't you just do this?
html:
<ul id="nav">
<li><a class="color" href="#">red</a></li>
<li><a class="color" href="#">green</a></li>
<li><a class="color" href="#">blue</a></li>
<li><a class="color" href="#">yellow</a></li>
</ul>
jQuery:
$('a.color').click(function(){
$('body').css('background-color', $(this).text());
});
Demo: http://jsfiddle.net/elclanrs/8yev9/
Edit: And if you need to assign a color by index use an array, I don't think you need that ugly switch statement, seems pretty useless to me, all that code can be reduced to just this:
var colors = ['red', 'blue', 'green', 'yellow'];
$('a.color').click(function(){
$('body').css('background-color', colors[$(this).parent().index()]);
});
Demo: http://jsfiddle.net/elclanrs/8yev9/1