$(document).ready(function(){
	window.setInterval(getTestimonial, 10000);
	
});
function getTestimonial(){
	$.ajax({
	    url: '/home/get-testimonial/',
	    type		: 'post',
	    dataType	: 'json',
	    success: function(result) {
			if(result.status == 1){
				if(result.message.description !== undefined && result.message.name !== undefined){
					$('.testimonial-block').html(result.message.description + '<span>' + result.message.name + '</span>');
				}
			} else {
				alert(result.mes);
			}
	    }
	});
}
