jQuery(document).ready(function(){

	// Testimonial Rotator
	jQuery('#quotes p').addClass('testimonial');
	setupRotator();

});

	function setupRotator(){
		if( jQuery('.testimonial').length > 1 ){
			jQuery('.testimonial:first').addClass('show').fadeIn(1000);
			//setInterval('textRotate()', 8000);
			jQuery('#nextquote').click(function(){
				textRotate();
				return false;
			});
		}
	}
	function textRotate(){
		var current = jQuery('#quotes > .show');
		if(current.next().length == 0){
			current.removeClass('show').fadeOut(500);
			jQuery('.testimonial:first').addClass('show').fadeIn(1000);
		} else {
			current.removeClass('show').fadeOut(500);
			current.next().addClass('show').fadeIn(1000);
		}
	}

