
function allocateSidebarHeight() {
var contentDom = document.getElementById("content");
var sidebarDom = document.getElementById("sidebar");
var sidebarBotDom = document.getElementById("sidebarContentBot");
if((contentDom.offsetHeight+30) > sidebarDom.offsetHeight) {
sidebarDom.style.height = (contentDom.offsetHeight)+"px";
sidebarBotDom.style.height = (sidebarDom.offsetHeight-327)+"px";
}
}



window.onload = function() { allocateSidebarHeight(); }
