function fixH(one,two) {
	if (document.getElementById(one)) {
		var lh=document.getElementById(one).offsetHeight;
		var rh=document.getElementById(two).offsetHeight;
		var nh = Math.max(lh, rh);
		document.getElementById(one).style.height=nh+"px";
		document.getElementById(two).style.height=nh+"px";
	}
}

window.onload=function(){
	fixH('equalLink1','equalBox1');
	fixH('equalLink2','equalBox2');
	fixH('equalLink3','equalBox3');
	fixH('equalLink4','equalBox4');
	fixH('equalLink5','equalBox5');
	fixH('equalLink6','equalBox6');
	fixH('equalLink7','equalBox7');
	fixH('equalLink8','equalBox8');
	fixH('equalLink9','equalBox9');
	fixH('equalLink10','equalBox10');
	fixH('leftArticle','rightArticle');
}