/* -- Simple slideshow ---*/

$(function(){
	$('.testimonial').hide().fadeIn(1000);	 
	
	/* -- check to see if there is more than 1 slide --*/
	if ( $('.testimonial').children('div').size() > 1 ) {
		
		var interval = $('.testimonial').attr('data-interval');
		
		$('.testimonial div:gt(0)').hide();
		setInterval(function(){
			$('.testimonial div:first-child').fadeOut(750)
			.next('div').fadeIn(0)
			.end().appendTo('.testimonial');}, 
			interval);
	}
	else {
		return false;
	}
	
	
});
