$(document).ready(function(){
$("#testimonials").load('assets/php/quotes.php', function() {
  		$("#testimonials").fadeIn(1000);
});
var refreshId = setInterval(function() {
	$("#testimonials").fadeOut(1000,function(){
      	$("#testimonials").load('assets/php/quotes.php?randval='+ Math.random(), function() {
  		$("#testimonials").fadeIn(1000);
		});
	});
}, 12000);

$.ajaxSetup({ cache: false });

});	

