// JavaScript Document

	// To add a quote, change # of elements, and add another quote into quote array and author into author array.

	var Q_elements = 3;  // Quote Elements
	
	var r = Math.floor(Math.random()*Q_elements+1);

	var quote = new Array(
      '<p>&ldquo;Deborah exhibits sheer brilliance. Ward has taken our organization to a whole new level of strategic messaging and planning.&rdquo;</p>',
      '<p>&ldquo;Ward Creative Communications has been a huge contributor to the success of Boyken International in the Houston and Texas markets.&rdquo;</p>',
      '<p>&ldquo;They have continued to prove themselves as professional &lsquo;go-to&rsquo; public relations support for our marketing department and company as a whole.&rdquo;</p>');	

	var author = new Array(
	  '<p><em>Tadd Tellepsen,<br>Vice President<br>Tellepsen</em></p>',
	  '<p><em>Robert Ferguson, LEED AP<br>Director of Operations - Houston<br>Boyken International</em></p>',
	  '<p><em>Esther Angell,<br>Marketing Supervisor<br>Enventure</em></p>');
	
	document.write(quote[r-1]);
	document.write(author[r-1]);
