// JavaScript Document to make sure the left column height matches the main content height

window.onload=function(){
	lHeight = document.getElementById("leftcontainer").offsetHeight;
	rHeight = document.getElementById("intro").offsetHeight;
	if(lHeight < rHeight){
		lHeight = document.getElementById("leftcontainer").style.height = rHeight+"px";
	}
}

