<!--
// function to determine the height of the content table, then asign that height + 44
// to the table on the right to bottom-align the woman-child image.

function setTall()
{	
	var contentHeight = document.getElementById('content');
	var randomHeight = document.getElementById('random');
	var tdHeight = document.getElementById('td');

	randomHeight.style.height = (parseInt(contentHeight.offsetHeight) + 44)+"px";
	tdHeight.style.height = (parseInt(contentHeight.offsetHeight) - 230)+"px";
}

//-->