function Quotation()
{
var Quote = new Array(17);
var Author = new Array(17);
Quote[0]="Of all noises, I think music is the least disagreeable.";
Author[0]=" - Samuel Johnson";
Quote[1]="Success didn't spoil me, I've always been insufferable.";
Author[1]=" - Fran Lebowitz";
Quote[2]="If you want to make an apple pie from scratch, you must first create the universe.";
Author[2]=" - Carl Sagan";
Quote[3]="All great truths begin as blasphemies.";
Author[3]=" - George Bernard Shaw, Annajanska";
Quote[4]="He who has a thousand friends Has not a friend to spare, While he who has one enemy shall meet him everywhere." ;
Author[4]=" - Ralph Waldo Emerson" ;
Quote[5]="To err is human; to forgive, divine. ";
Author[5]=" - Alexander Pope, An Essay on Criticism ";
Quote[6]="The only true wisdom is in knowing you know nothing.";
Author[6]=" - Socrates ";
Quote[7]="The pure and simple truth is rarely pure and never simple. " ;
Author[7]=" - Oscar Wilde" ;
Quote[8]="You can always cope with the Now, but you can never cope with the future - nor do you have to. The answer, the strength, the right action, or the resource will be there when you need it, not before, not after.";
Author[8]=" - Eckhart Tolle, author of The Power of Now" ;
Quote[9]="Silence is a potent carrier of presence, so when you read this be aware of the silence between and underneath the words. Be aware of the gaps. To listen to the silence, wherever you are, is an easy and direct way of becoming present." ;
Author[9]=" - Eckhart Tolle, author of The Power of Now" ;
Quote[10]="If you are never scared, embarrassed or hurt, it means you never take chances" ;
Author[10]=" - Julia Soul " ;
Quote[11]="We're all pilgrims on the same journey - but some pilgrims have better road maps." ;
Author[11]=" - Nelson DeMille" ;
Quote[12]="You miss 100% of the shots you never take." ;
Author[12]=" - Wayne Gretzky" ;
Quote[13]="You must learn from the mistakes of others. You can't possibly live long enough to make them all yourself." ;
Author[13]=" - Sam Levenson" ;
Quote[14]="We can't help everyone, but everyone can help someone." ;
Author[14]=" - Dr. Loretta Scott" ;
Quote[15]="Catch on fire with enthusiasm and people will come for miles to watch you burn." ;
Author[15]=" - John Wesley" ;
Quote[16]="Energy is equal to desire and purpose." ;
Author[16]=" - Sheryl Adams" ;
//Quote[]="" ;
//Author[]=" - " ;
var Pointer;
Pointer=Math.random();
Pointer=Pointer*16;
Pointer=parseInt(Pointer);
var strQuote;
strQuote=Quote[Pointer];
strAuthor=Author[Pointer];
document.write (strQuote + "
" + strAuthor) ;
//document.write "a
sd";
//document.write (strAuthor);
}