$(function(){
	
	var projectPos = $('#projects-container').offset().top;
	$('#pop-cont').css({'top': projectPos+30+'px'});
	$('html, body').stop().animate({scrollTop: projectPos-145}, 400);
	$('#project-mesh').fadeIn("fast");
	
	$(function(){
		
		arr =[ ];
		arr = $('.client-img img').map(function() {
			return $(this).attr('width');
		});
		
		var totall = 300;
		
		$.each(arr, function() {
				totall += this;
			});
			
		$('#client-scroll-c').css({width:totall+"px"});
		
		$('#client-scroll').jScrollPane({showArrows: true});
	});
});
