
function numDescending(a, b) {
	return (b-a);
}

function CorrectColumnHeight() {
	
	var colHeight = new Array(3);	
	
	colHeight[0] = document.getElementById('home-col-1').offsetHeight;
	colHeight[1] = document.getElementById('home-col-2').offsetHeight;
	colHeight[2] = document.getElementById('home-col-3').offsetHeight;
	
	/*alert(colHeight[0]+' '+colHeight[1]+' '+colHeight[2]);*/
	
	colHeight.sort(numDescending);
		
	var newLength = colHeight[0]+10;
	
	document.getElementById('home-col-1').style.height = newLength+"px";
	document.getElementById('home-col-2').style.height = newLength+"px";
	document.getElementById('home-col-3').style.height = newLength+"px";
	
}
