var quote = new Array()

quote[0] = '<h3 class="quote-text span-13"><i>&ldquo;Kevin Hall shows us the surprising power of words - tools we can use to shape new thoughts and beliefs - to help us change, and create something better for ourselves and our planet.&rdquo;</i></h3><h3 class="quote-author span-13">  - SPENCER JOHNSON, M.D.</h3><h4 class="quote-author-info span-11 prepend-2"> #1 <i>New York Times</i> bestselling author of <i>Who Moved My Cheese?</i>, and <i>Peaks and Valleys</i>. Co-Author of <i>The One Minute Manager</i></h4>';

quote[1] = '<h3 class="quote-text span-13"><i>&ldquo;Just as I broke new ground in human development over twenty years ago by uncovering the habits that make for a meaningful and effective life, Kevin is breaking new ground by uncovering and revealing the true intent and meaning of the words that make up those habits.&rdquo;</i></h3><h3 class="quote-author span-13">  - STEPHEN R. COVEY</h3><h4 class="quote-author-info span-11 prepend-2">Bestselling author of <i>7 Habits of Highly Effective People</i></h4>';

quote[2] = '<h3 class="quote-text span-13"><i>&ldquo;This revealing book takes you on a journey of discovery filled with recurring &lsquo;wows&rsquo; and &lsquo;ahas&rsquo;!  Uncovering the true meaning of a core word is like turning on a light switch.  ASPIRE should be broadly read and generously shared.&rdquo;</i></h3><h3 class="quote-author span-13">  - JON L.  LUTHER</h3><h4 class="quote-author-info span-11 prepend-2"> Chairman & CEO, DUNKIN&rsquo; BRANDS</h4>';

quote[3] = '<h3 class="quote-text span-13"><i>&ldquo;Words have power ... amazing power&#33;  I can&rsquo;t wait to see the world&rsquo;s response to ASPIRE.&rdquo;</i></h3><h3 class="quote-author span-13">  - JOHN ASSARAF</h3><h4 class="quote-author-info span-11 prepend-2">New York Times bestselling author of <i>The Answer</i>&#59; Teacher in <i>The Secret</i></h4>';

quote[4] = '<h3 class="quote-text span-13"><i>&ldquo;Kevin&rsquo;s ability to unlock human potential is rare and extremely valuable.  In ASPIRE, he unveils a completely new paradigm for personal development and growth that is dynamic and life changing.&rdquo;</i></h3><h3 class="quote-author span-13">  - NORMAN E. BRINKER</h3><h4 class="quote-author-info span-11 prepend-2">Founder and Chairman Emeritus, Brinker International</h4>';

quote[5] = '<h3 class="quote-text span-13"><i>&ldquo;I literally had chills as I read ASPIRE and unabashedly give this work my highest recommendation and support.  It is an absolute winner!&rdquo;</i></h3><h3 class="quote-author span-13">  - EDNA MORRIS</h3><h4 class="quote-author-info span-11 prepend-2">Former President: James Beard Foundation, Red Lobster Restaurants</h4>';

quote[6] = '<h3 class="quote-text span-13"><i>&ldquo;More than just an engaging sojourn into etymology, ASPIRE has the power to help individuals and teams focus on their true purpose and reach their best and highest aspirations.&rdquo;</i></h3><h3 class="quote-author span-13">  - RICHARD PAUL EVANS</h3><h4 class="quote-author-info span-11 prepend-2">#1 New York Times bestselling author of <i>The Christmas Box</i></h4>';

quote[7] = '<h3 class="quote-text span-13"><i>&ldquo;Kevin Hall&rsquo;s book is like Og Mandino for the 21st century.&rdquo;</i></h3><h3 class="quote-author span-13">  - DAVE BLANCHARD</h3><h4 class="quote-author-info span-11 prepend-2">CEO of the Og Mandino Group</h4>';

quote[8] = '<h3 class="quote-text span-13"><i>&ldquo;Kevin has detailed within the pages of this book how to take control of, and master, the direction of your life.&rdquo;</i></h3><h3 class="quote-author span-13">  - Dr. Gerald Bell</h3><h4 class="quote-author-info span-11 prepend-2">The Bell Leadership Institute</h4>';

quote[9] = '<h3 class="quote-text span-13"><i>&ldquo;I love great books that have changed my life. Aspire is one of those truly great books. Kevin Hall is right up there with Og Mandino and Napoleon Hill.&rdquo;</i></h3><h3 class="quote-author span-13">- BOB PROCTOR</h3><h4 class="quote-author-info span-11 prepend-2">Teacher in <i>The Secret</i> and bestselling author of <i>You Were Born Rich</i></h4>';

quote[10] = '<h3 class="quote-text span-13"><i>&ldquo;This book brings to light the power of language to not only inform, but also to realize the potential of a life fully lived. The revelations in Aspire are necessary tools to aid every passage of life.&rdquo;</i></h3><h3 class="quote-author span-13">- GAIL SHEEHY</h3><h4 class="quote-author-info span-11 prepend-2">New York Times bestselling author of <i>Passages</i> and <i>Passages in Caregiving</i></h4>';

quote[11] = '<h3 class="quote-text span-13"><i>&ldquo;What an incredible book. I felt like I was on a journey the whole time I was reading it. I just gave out ten copies to close friends and associates.&rdquo;</i></h3><h3 class="quote-author span-13">- JOAN LINTON</h3><h4 class="quote-author-info span-11 prepend-2">Co-founder, School Improvement Network</h4>';

quote[12] = '<h3 class="quote-text span-13"><i>&ldquo;In <i>Aspire</i>, Kevin Hall opens your eyes to the highest level of understanding. He has shown us that language is the most important factor in our quest for enlightenment.&rdquo;</i></h3><h3 class="quote-author span-13">- DEBBIE FORD</h3><h4 class="quote-author-info span-11 prepend-2">Bestselling author of <i>The Right Questions</i></h4>';

var q = 0;
  
$(function(){
  $('#quotes').html(quote[q]);
  q++;
  setInterval("cycleQuotes()",10000);

});

function cycleQuotes(){
	$('#quotes').html(quote[q]);
	q++;
	if(q == quote.length){
		q = 0;
	}
}