I currently have a main div and three additional divs contained within it:
<div id="container" style="width:100%;">
<div id="left" style="width:201px; float:left;">
....
</div>
<div id="centre" style="float:left;">
....
</div>
<div id="right" style="width:135px; float:right;">
....
</div>
</div>
My goal is to adjust the width of the centre div so that the total width of containerDiv equals the sum of leftDivWidth, rightDivWidth, and centreDivWidth;