/*============================================================
Script:     Random Quote

Functions:  This simple script allows you to print random
            quotations in the page.  Any number of quotes
            may be used.
            
Browsers:   All

Author:     etLux
============================================================

INSTRUCTIONS:

Put the following script in the <body> of your page,
wherever you want the quotes to appear.  Simply set up the
quotations in the Quotations[] array, then paste in the 
whole block of code.  To format the text, wrap the usual
font tags around the script (view source on our demo on this
page for an example.)

TECH NOTE:

In quotation 8, note the text, \"beauty\" -- if you need
to use double-quote " marks, you *must* precede each
double-quote with a backslash \... otherwise the script
will break.

THE CODE:
*/

// ==============================================
// 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] = "If it's a good idea, go ahead and do it. It's much easier to apologize than it is to get permission. -Adm. Grace Hopper";
Quotation[1] = "If it isn't bolted down, bring it home. -Adm. Grace Hopper";
Quotation[2] = "Never argue with an idiot. They bring you down to their level and beat you with experience.";
Quotation[3] = "Engineering is about finding the sweet spot between what's solvable and what isn't. -Dr. Radia Perlman";
Quotation[4] = "Those people who think they know everything are a great annoyance to those of us who do. -Isaac Asimov";
Quotation[5] = "Sometimes the best engineers come in bodies that can't talk. -Nolan Bushnell";
Quotation[6] = "Being a social outcast helps you stay concentrated on the really important things, like thinking and hacking. -Eric Raymond";
Quotation[7] = "The trouble with programmers is that you can never tell what a programmer is doing until it's too late. -Seymour Cray";
Quotation[8] = "A mathematician is a machine for turning coffee into theorems. -Paul Erdos";
Quotation[9] = "To love is to admire with the heart; to admire is to love with the mind. - Theophile Gautier";

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






