// JavaScript Document
function randomQuote()
{
var allQuotes=new Array();
allQuotes[0]="<p class='quote'>&quot;I thank [Tim] for the ripple effect of caring and giving...&quot;</p><img src='img/client-UnitedWay.jpg' width='130' height='82' class='logo-quoted'><p class='quoted'>Beth Burkes,<br />Vice President<br />United Way</p>";
allQuotes[1]="<p class='quote'>&quot;One of the best speakers I’ve ever had the pleasure to work with.&quot;</p><img src='img/client-SOCAP.jpg' width='130' height='82' class='logo-quoted'><p class='quoted'>M. Lauren Basham,<br />Senior Director,<br />SOCAP International</p>";
allQuotes[2]="<p class='quote'>&quot;Just a great presentation and the team is still buzzing!&quot;</p><img src='img/client-Raytheon.jpg' width='130' height='82' class='logo-quoted'><p class='quoted'>William H. Swanson,<br />Chairman &amp; CEO,<br />Raytheon</p>";
allQuotes[3]="<p class='quote'>&quot;Motivating words and energetic presentation...&quot;</p><img src='img/client-Marines.jpg' width='130' height='82' class='logo-quoted'><p class='quoted'>Brigadier General<br />William D. Catto,<br />US Marine Corps</p>";
allQuotes[4]="<p class='quote'>&quot;Huge response... ended on such a high note!&quot;</p><img src='img/client-ADP.jpg' width='130' height='82' class='logo-quoted'><p class='quoted'>Manager,<br />Automatic Data Processing, Inc.</p>";
allQuotes[5]="<p class='quote'>&quot;...beyond fantastic. In one hour [he] propelled this group years ahead.&quot;</p><img src='img/client-Colliers.jpg' width='130' height='82' class='logo-quoted'><p class='quoted'>Rick Kimball,<br />Senior VP,<br />Colliers International USA</p>";
allQuotes[6]="<p class='quote'>&quot;I thank [Tim] so much for helping make the past two events a HUGE success for Microsoft.&quot;</p><img src='img/client-AMA.jpg' width='130' height='82' class='logo-quoted'><p class='quoted'>Kate Taylor,<br />Chapter President,<br />American Marketing Association</p>";
allQuotes[7]="<p class='quote'>&quot;Very insightful and inspiring.&quot;</p><img src='img/client-NokiaSiemens.jpg' width='130' height='82' class='logo-quoted'><p class='quoted'>Claudio Frascoli,<br />Head of Strategic Marketing,<br />Nokia Siemens Networks</p>";
allQuotes[8]="<p class='quote'>&quot;Set the perfect tone for the conference... and resonated on several levels.&quot;</p><img src='img/client-AAA.jpg' width='130' height='82' class='logo-quoted'><p class='quoted'>Elizabeth A. Sell,<br />Managing Director,<br />AAA Travel</p>";
var l =allQuotes.length;
var r=Math.random();
var t=l * r;
var i = Math.floor(t);
document.getElementById('quote').innerHTML = allQuotes[i];
}