//Edit quotes below this line in consistent format
//Comma after each quote - but not the last one!
// All quote marks " that need to be printed out must be preceded by \

var quotes = [

"<h3>Overcoming Obstacles that Stand in the Way of Possibilities.</h3>"+
"<p>Gary lost the use of his arm in a mountaineering accident just as he had found his life's "+
"passion: alpine climbing. He stunned a medical team at Duke University by asking to have his "+
"paralyzed arm amputated. He has inspired others ever since to continue onward and upward.</p>"+
"<p>Gary Guller, <a href=\"keynote_presentations/index.html\">Motivational Everest speaker</a>, led the largest cross-disability group to reach Mt. Everest Base Camp at 17,500 "+
"feet, before setting another record, becoming the first person with one arm to summit Mt. Everest!</p>"+
"<p>Interview: &quot;<a href=\"videos/clips/on-the-porch.html#OnthePorch\">"+
"On the Porch with Jim Swift</a>&quot; <img src=\"images/logos/video_icon2.gif\" alt=\"Video\" width=\"23\" height=\"18\" align=\"absmiddle\"></p>",

"<h3>Are You Ready to GO <br>Beyond Your Limit?</h3>"+
"<p>Gary Guller, <a href=\"keynote_presentations/index.html\">Motivational Everest speaker</a>, led the largest cross-disability group"+
"	to reach Mt. Everest Base Camp at 17,500 feet, before setting another record, becoming "+
"	the first person with one arm"+
"	to summit Mt. Everest! </p>"+
"<p>Gary and his successful Team Everest expedition were featured in over 500 newspaper and magazine"+
"  articles, numerous TV reports with national and international coverage.</p>"+
"<p><a href=\"videos/clips/abc.html#ABCnews\">"+
"ABC World News Tonight </a><img src=\"images/logos/video_icon2.gif\" alt=\"\" width=\"23\" height=\"18\" align=\"absmiddle\"></p>",

"<h3>Scaling New Heights </h3>"+
"<p>&quot;The Edge... there is no honest way to explain it because the only people who really know where "+
" it is are the ones who have gone over.&quot; <br><strong>Hunter S. Thompson</strong></p>"+
"<p>Gary Guller, <a href=\"keynote_presentations/index.html\">Motivational Everest speaker</a>, led the largest cross-disability group"+
" to reach Mt. Everest Base Camp at 17,500 feet, before setting another record, becoming"+
" the first person with one arm"+
" to summit Mt. Everest! </p>"+
"<p><a href=\"movie/index.html#movieClip\" title:\"Team Everest: A Himalayan Journey\">"+
"Team Everest: A Himalayan Journey</a> <img src=\"images/logos/video_icon2.gif\" alt=\"\" width=\"23\" height=\"18\" align=\"absmiddle\"></p>",

"<h3>Embracing our Differences</h3>"+
"<p><a href=\"keynote_presentations/leadership-teamwork.html\">Gary Guller's</a> presentations will show the audience how belief, teamwork, passion and compassion make anything possible. And how acceptance of diversity and diversity of thought will serve a globally integrated world economy in a positive and competitive way. <br><br>It is a compelling message. </p>"+
"<p><a href=\"videos/clips/promo-everest.html#TEmessage\">"+
" Team Everest &quot;Anything is Possible&quot;</a> "+
"<img src=\"images/logos/video_icon2.gif\" alt=\"\" width=\"23\" height=\"18\" align=\"absmiddle\"></p>"



]


// Do not edit below this line

rnd.today=new Date();
rnd.seed=rnd.today.getTime();

function rnd() {
        rnd.seed = (rnd.seed*9301+49297) % 233280;
        return rnd.seed/(233280.0);
};

function rand() {
		number = quotes.length;
        return Math.ceil(rnd()*number);
};

function getText() {
		return quotes[rand() - 1];
};

