мое решение
каждый плавающий div имеет класс (.fl или .fr)
.fl { float:left; }
.fr { float:right; }
$(".fl").each(function(e)
{
$(this).css('width',$(this).outerWidth( true ));
});
$(".fr").each(function(e)
{
$(this).css('width',$(this).outerWidth( true ));
});