Hola, te paso un codigo con el que puedes empezar:
Código:
#central{
background: #999999;
width: 54%;
float: left;
}
#left{
float: left;
width: 200px;
background: #0033CC;
}
#right{
float:right;
width:302px;
background: #009966;
}
HTML:
<div id="left">
menú izquierda
</div>
<div id="central">
Contenido
</div>
<div id="right">
menú derecha
</div>