$(document).ready(function() {
	
	var totWidth = 0;
	
	$("div#images div").each(function () {
		divWidth = $(this).width();
		totWidth = totWidth + divWidth + 7;
	});
	$("div#images").width(totWidth-7)
	
});	
