/*function setRows() {
	
	
	box_left = document.getElementById('content-left');
	box_right = document.getElementById('content-center');
	
	leftY = box_left.offsetHeight;
	rightY = box_right.offsetHeight;
	
	//alert(leftY+' '+rightY);
	if(leftY < rightY) {
		diff = rightY - leftY
		pad = (diff < 10) ? (10 - diff) : 0;
		box_right.style.paddingBottom = pad;
	}
	else if(rightY < leftY) {
		diff = leftY - rightY
		pad = (diff < 10) ? (10 - diff) : 0;
		box_left.style.paddingBottom = pad;
	}
	else {
		box_right.style.paddingBottom = 0;
		box_left.style.paddingBottom = 0;
	}
}*/

//window.onload = setRows();
