/**
 * JTW Testimonials Slider
 */              

var delay = 5000;

function jtwAdvanceToNext() {
	jQuery('#testimonial-slider .t-item.current').removeClass('current').fadeOut('fast', function() {
		var nextItem;
		if (jQuery(this).next().html() != null) {
			nextItem = jQuery(this).next();
		} else {
			nextItem = jQuery(this).parent().find('.t-item:first-child');
		}
		nextItem.addClass('current').fadeIn('fast', function() {
			setTimeout( 'jtwAdvanceToNext()', delay );
		});
	});
}

jQuery(document).ready(function($) {
    
	

	

	$('#testimonial-slider .t-item').hide();
	$('#testimonial-slider .t-item:first-child').show().addClass('current');
	
	setTimeout( 'jtwAdvanceToNext()', delay );
	
	
	
});