// JavaScript Document
$(document).ready(function(){
	
	$.get('quotes.txt', function(data) {
        var quotes = data.split("\|");
        var idx = Math.floor(quotes.length * Math.random());
        $('#testimonials p').html(quotes[idx]);
    });
	
	})
