jQuery.noConflict();
jQuery(document).ready(function($){
	function loadTestimonials() {		
		$.ajax({
			type: "GET",
			url: "http://systemfiltration.de/index.php",
			data: "id=2095",
			cache: false,
			dataType: "html",
			timeout: 5000,
			success: function(data){
				$('#testimonials').fadeTo(1500, 1);
				$('#testimonials').html(data);
				$('#testimonials').delay(5000).fadeTo(1500, 0, function(){
					loadTestimonials();
				});
			}
		});
	}
	$('#testimonials').delay(5000).fadeTo(1500, 0, function(){
		loadTestimonials();
	});
});
