
$$(".recipe_row").each(function(row)
{
	var maxHeight = 0;
	var boxes = row.getElements(".text");	
	
	boxes.each(function(box) 
	{ 
		maxHeight = Math.max(maxHeight, box.getPosition().height);
	});
	
	boxes.each(function(box)
	{
		box.style.height = (maxHeight + 10) + "px";
	});
	
	row.getElements(".go_button").each(function(go)
	{
		go.style.bottom = "16px";
		go.style.right = "15px";
	});
	
});
