$(document).ready(function () {
	$("#testi").load("getTestimonial3.php #testimonials", function() {

		var testimonials = $('#testimonials .containerTesti .quote_wrapper');
		if (testimonials.length > 0) {
			testimonials.cycle({
				fx: 'fade',
				timeout: 5000,
				speed: 300,
				pause: 1,
				cleartype:  true,
				cleartypeNoBg:  true,
				random: 1,
				next:   '#next_quote',            
				prev:   '#prev_quote'
			});
		}
		else {
			$("#testi").html('Testimonials Coming Soon&hellip;');
		}
	});
});

