// JavaScript Document

// Setting height of right collum if its there
function setRightColHeight() {
	var hL = document.getElementById('body').offsetHeight;
	if(document.getElementById('rightColumn') != null || (document.getElementById('rightColumn').offsetHeight < hL)) {
		if(document.getElementById('rightColumn').offsetHeight < hL) {
			document.getElementById('rightColumn').style.height = (hL+10) + "px";
		}
	}
}

window.onload = setRightColHeight;
