$(function(){
	/*Prepare carousel Home bloc*/
	$('#clients-list').removeAttr('style');
	$('.clients-container').addClass('js-on');
	
	/*activate jcarousel*/
	$('#clients-list').jcarousel({
		wrap: 'both',
		scroll:2
	});
	
	/*Vertical center on icons and items*/
	$('#clients-list li img').each(function(){
		$(this).css('margin-top',(($(this).parent().height()-$(this).height())/2)+'px');
		$(this).siblings('span').css('margin-top',(($(this).parent().height()-$(this).siblings('span').height())/2)+'px');
	});
	
	/* Re-Init the Carousel size when all images are loaded */
	nbImages = $('#clients-list li img').length;
	loaded = 0;
	$('#clients-list li img').load(function(){
		loaded++;
		$(this).css('margin-top',(($(this).parent().height()-$(this).height())/2)+'px');
		$(this).siblings('span').css('margin-top',(($(this).parent().height()-$(this).siblings('span').height())/2)+'px');
		if(loaded == nbImages){
			var ulSize = 0;
			$.each($('#clients-list li'), function(i,item){
				ulSize += $(item).outerWidth();
			});
			$('#clients-list').width(ulSize);
		}
	});
	
	/*Prepare carousel bloc*/
	$('#project-list').removeAttr('style');
	$('.project-container').addClass('js-on');
	
	/*activate jcarousel*/
	$('#project-list').jcarousel({
		wrap: 'both',
		scroll:2

	});
	
	$('#project-list-diaporama').jcarousel({
		wrap: 'both',
		scroll:1,
		auto: 5

	});
	
	$('.jcarousel-prev').attr('title','Diapositive précédente');
	$('.jcarousel-next').attr('title','Diapositive suivante');
});
