$(document).ready(function() {

// Dynamically figures out and sets the width

	$(window).load(function() {
		var width = 0;
		$('.article').each(function() {
		  width += $(this).outerWidth(true);
		});
		$('#container').css('width', width + 350);

	});
	
});

