window.addEvent('load', function() {

	var div_box1 = $$('.partner1');
	var div_box2 = $$('.partner2');
	
	for (x=0; x < div_box2.length; x++){
	
		if (div_box1[x].offsetHeight < div_box2[x].offsetHeight){
			div_box1[x].style.height = div_box2[x].offsetHeight - 22 + "px";
		}else if (div_box1[x].offsetHeight > div_box2[x].offsetHeight){
			div_box2[x].style.height = div_box1[x].offsetHeight - 22 + "px";
		}
	
	}
	
	
});