	$(document).ready(function(){
		var counter = 0;
		function loadFirst() {
			$('#newsticker').hide();
			$.ajax({
				type: "GET",
				cache: false,
				data: "",
				url: "/jquery/show-testimonial.php",
				success: function(msg){
					if (msg != ''){
						$("#newsticker").html(msg).fadeIn(2000);
					}
				}
			});
		}
		function removeFirst() {
			counter++;
			$('#newsticker').hide();
			$.ajax({
				type: "GET",
				cache: false,
				data: "counter="+counter,
				url: "/jquery/show-testimonial.php",
				success: function(msg){
					if (msg != ''){
						$("#newsticker").html(msg).fadeIn(2000);
					}
				}
			});
		}
		loadFirst();
		interval = setInterval(removeFirst, 7000);
	});
