			n = 1;
			var selector = "#testimonial" + n;
			firstCycle = true;
			
			function cycleTestimonials() {
				
				if (!firstCycle) {
					$(selector).hide("slide", {
						direction: "right"
					}, 500);
				}
				else {
					firstCycle = false;
				}
				
				selector = "#testimonial" + n;
				
				$(selector).show("slide", {
                    direction: "left"
                }, 500);

				if (n == 4) 
				n = 1;
				else
				n++;
				
			}
		$(document).ready(function() {
			
				var timer = 0;
				
				while (timer < 20001) {
					var t = setTimeout("cycleTestimonials()", timer);
					timer = timer + 4000;
				}
							
		
		});
