// ==============================================
// Copyright 2004 by CodeLifter.com
// Free for all; but please leave in this header.
// ==============================================

var Quotation=new Array() // do not change this!

// Set up the quotations to be shown, below.
// To add more quotations, continue with the
// pattern, adding to the array.  Remember
// to increment the Quotation[x] index!

Quotation[0] = "<h2 id='rp3-quote'>Hell, there are no rules here--<br />we're trying to accomplish something.<br /><span class='quote-author'>Thomas Alva Edison</span></h2>";
Quotation[1] = "<h2 id='rp3-quote'>It's not your age that determines<br />what you can learn, it's your energy.<br /><span class='quote-author'>Steve Chandler</span></h2>";
Quotation[2] = "<h2 id='rp3-quote'>If you want to achieve things in life,<br />you've just got to do them,<br />and if you're talented and smart, you'll succeed. <br /><span class='quote-author'>Juliana Hatfield</span></h2>";
Quotation[3] = "<h2 id='rp3-quote'>Seeming to do is not doing.<br /><span class='quote-author'>Thomas Alva Edison</span></h2>";
Quotation[4] = "<h2 id='rp3-quote'>If you can't explain it simply,<br />you don't understand it well enough.<br /><span class='quote-author'>Albert Einstein</span></h2>";
Quotation[5] = "<h2 id='rp3-quote'>Try to learn something about everything<br />and everything about something.<br /><span class='quote-author'>T.H. Huxley</span></h2>";
Quotation[6] = "<h2 id='rp3-quote'>Take everything you like seriously,<br />except yourselves.<br /><span class='quote-author'>Rudyard Kipling</span></h2>";
Quotation[7] = "<h2 id='rp3-quote'>Seeming to do is not doing.<br /><span class='quote-author'>Thomas Alva Edison</span></h2>";

// ======================================
// Do not change anything below this line
// ======================================
var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));
function showQuotation(){document.write(Quotation[whichQuotation]);}
showQuotation();