function fixheight() {
var col1 = document.getElementById('brighton_col1');
var col2=document.getElementById('brighton_col2');
if (col2.offsetHeight <col1.offsetHeight)
{
document.getElementById('brighton_col2').style.height= (col1.offsetHeight+250) +'px'; //;
}

}

window.onload = fixheight;