$(document).ready(function(){

	$('.carousel').infiniteCarousel({
		displayThumbnailBackground : 0,
		displayProgressBar  : 0,
		showControls : 0,
		transitionSpeed : 2000,
		displayTime : 5000,
		thumbPosition : 'top',
		padding : '5px',
		displayThumbnails : false,
		inView : 1,
		autoHideCaptions : 0,
		textholderHeight : 0,
		onSlideEnd : function(inview,obj){
		
			$(obj).parent().siblings('.imgInfo').fadeOut(500,function(){
			
				clone = $(obj).find('.inview:first p').clone().css('display','');
				$(this).html($(clone).html());
				$(this).fadeIn(500);
			})
			
		},
		onStart : function(obj){
			
			$(obj).parent().siblings('.imgInfo').fadeOut(500,function(){
			
				clone = $(obj).find('li:first').next().find('p').clone().css('display','');
				$(this).html($(clone).html());
				$(this).fadeIn(500);
			})
			
		}

	});


});
