SunGard.Utilities={};SunGard.Utilities.Layout=Class.create({initialize:function(A){this.rows=A;if(this.rows.flatten().size()==0){return ;}this.simulateTableLayout(this.rows);},simulateTableLayout:function(A){A.each(function(B){B.invoke("setStyle",{height:B.pluck("offsetHeight").max()+"px"});});}});document.observe("dom:loaded",function(){this.summaryTexts=$$("body.publicsector #solutions ul li p");this.solutionsList=$$("body.publicsector #solutions ul li ul:first-of-type");this.productsList=$$("body.publicsector #solutions ul li ul:last-of-type");this.rows=[this.summaryTexts,this.solutionsList,this.productsList];new SunGard.Utilities.Layout(this.rows);});