$(document).ready(function(){
	var _width = 0;
	$('.products ul li').each(function(){
		_width+=$(this).outerWidth();
	});
	$('.products ul').width(_width);
});