// JavaScript Document

function resizeSubFooterBoxes()
{
	var i = document.getElementById("indexContent");
	var c = document.getElementById("contactBox");
	
	if(i.offsetHeight > c.offsetHeight)
	{
		c.style.height = i.offsetHeight-22 + "px";
	}
	else
	{
		i.style.height = c.offsetHeight-22 + "px";
	}
}

window.onload = resizeSubFooterBoxes;


