/*************************************************************
Edit testimonials.html

Use this quote template and paste your text inside <p> and <h5>

<div class="quote">
	<p>&ldquo;&rdquo;</p>
	<h5></h5>
</div>

**************************************************************/

$(document).ready(function(){
	$("#quoteblock").load("testimonials.html", function(){
      var $quotes = $(this).find("div.quote");
      var n = $quotes.length;
      var random = Math.floor( Math.random()*n );
      $quotes.hide().eq(random).fadeIn();
	}); 
}); 

