
function makeFit() {
 //Script to make sure all divs flow with the content of the page
 var pContent = document.getElementById('maincontent');
 var lNav = document.getElementById('nav');
 var cheight = pContent.offsetHeight;	//Height of content div
 var lheight = lNav.offsetHeight;	//Height of left nav


 mheight = Math.max(lheight,cheight);


 //Now set heights on all divs the same
 pContent.style.height = mheight+"px";
 lNav.style.height = mheight+"px";
}
