window.onload = function() 
{
	var s  = document.getElementById('sec1');
	var sp = document.getElementById('simg1');
	var st = document.getElementById('stxt1');
	var fr = document.getElementById('fullrow1');
	var x = Math.max(sp.offsetHeight,st.offsetHeight);
	fr.style.top = x + 'px';
	s.style.height = (x + 6 + fr.offsetHeight)+'px';

	s  = document.getElementById('sec3');
	sp = document.getElementById('simg3');
	st = document.getElementById('stxt3');
	fr = document.getElementById('fullrow2');
	x = Math.max(sp.offsetHeight,st.offsetHeight);
	fr.style.top = x - 6 + 'px';
	s.style.height = (x - 4 + fr.offsetHeight)+'px';


}
