//Javascript Document
//Makes sidebar and main the same height
window.onload = divHeight;


function divHeight(){
       newHeight = document.getElementById('main').offsetHeight;
       document.getElementById('sidebar').style.height = newHeight+"px";

}

