OH! My resolution is HUGE so I didn't notice that... but you want the exact opposite from what I was explaining!
LadyAnna has your answer, but to put it a more straight-forward way:
Code:
<div id="everything">
<div id="logoDiv"></div>
<div id="contentDiv"></div>
<div id="navDiv"></div>
</div>
However, this may break because of your position absolute-ing. You can try removing your positioning and replacing it with:
You may need to rearrange your html so that the navigation remains on the left, like so:
Code:
<div id="everything">
<div id="navDiv"></div>
<div id="logoDiv"></div>
<div id="contentDiv"></div>
</div>