jQuery(document).ready(function(){
	
	showARandomQuote();

});

function showARandomQuote()
{
	//by default hide all quotes
	jQuery(".testimonial-wrapper").hide();

	//pick a random one to show
	var selectedQuote = jQuery(".testimonial-wrapper").get().sort(function(){
		return Math.round(Math.random()) -0.1;

	}).slice(0,1);

	jQuery(selectedQuote).show();	
}
