/*$.Cliente = function () {

	var $element = $(".lateral-marcas li");
	
	this.cliente = function() {
		var largura = 0;
		
		$element.each(function(i) {
			largura = largura + $(this).find('img').width() + 40;
			
			if ($(this).find('img').width() > 103) {
				$(this).find('img').css({width:103, height:52});
			}
		});
		$(".lateral-marcas .box ul li").clone().appendTo('ul');
		$(".lateral-marcas .box ul").width((largura*2)-(40)).find('li:first').addClass('first');
		
		$element.pontoscroll();		
	};
	
	

	this.cliente();
	
};

(function($){
	$(function (){

		var cliente = new $.Cliente();

	});
})(jQuery);*/
