// JavaScript Document
function homeHeights(){
	
	var leftCol = document.getElementById("leftCol");
	var rightCol = document.getElementById("rightCol");
	
	var h = Math.max(leftCol.offsetHeight, rightCol.offsetHeight);
	
	if (rightCol.offsetHeight <=h){
		rightCol.style.height = h+'px';	
	}
	
}

function generalHeights(){
	
	var newsColContent = document.getElementById("newsColContent");
	var highlightBoxContent = document.getElementById("highlightBoxContent");
	
	var h = Math.max(newsColContent.offsetHeight, highlightBoxContent.offsetHeight);
	
	if(newsColContent.offsetHeight < h){
		newsColContent.style.height = (h)+'px';	
	}
	if(highlightBoxContent.offsetHeight < h){
		highlightBoxContent.style.height = (h)+'px';	
	}
}