$(".soon").ready(function(){
	soonLength = Math.round($('.soon li').length/2);
	width = soonLength*125 + (soonLength-1)*57;
	$('.soon ul').width(width);	
	
	expectedLength = Math.round($('.expected li').length/2);
	width = expectedLength*125 + (expectedLength-1)*57;
	$('.expected ul').width(width);
	
});

