$(function()
{
	$.getJSON("testimonials.php", function(data)
	{
		i = Math.floor(Math.random() * data.player_testimonials.length);
		$(".link-list.last").append('<div class="testimonial"><h4>Testimonial</h4><blockquote><p>' + data.player_testimonials[i].testimonial + '</p></blockquote><p><strong>' + data.player_testimonials[i].author + '</strong></p></div>');
	});
});