window.addEvent('domready', function(){
								
	var AcolsH1 = 0;	
	var AcolsH2 = 0;	
	
	rowA = new Array($$('.ACols .promos')[0], $$('.ACols .promos')[1]);
	rowB = new Array($$('.ACols .promos')[2], $$('.ACols .promos')[3]);	
	
	$each(rowA , function(col){			  
		if((col.getCoordinates().height)>=AcolsH1){
			AcolsH1 = (col.getCoordinates().height);
		}		
	});
	
	$each(rowA , function(col){
		col.setStyle('height' , AcolsH1);
	});
	
	
	$each(rowB , function(col){
		if((col.getCoordinates().height)>AcolsH2){
			AcolsH2 = (col.getCoordinates().height);
		}		
	});
	
	$each(rowB , function(col){
		col.setStyle('height' , AcolsH2)	;							  
	});
});