//--------------------------------------------------
// Global

	$(function() {

		$('.external').attr('target','_blank').attr('title','Opens in a new window');


		if ($("#testimonials").length > 0){

			var i = 0;
			var n = $(".testimonial").length;
			$(".testimonial").hide();

			function showbox() {

				if(i <= n){
				$(".testimonial").eq(i-1).fadeOut(500, function(){
					if (i>=n){i=0;}
					$(".testimonial").eq(i).fadeIn(500, function(){
						i++;
						setTimeout(function(){showbox();}, 10000);
					});

				});
				}

			}
			showbox();

		};

	});
