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

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

// 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 you submit an enlightening quotation, this may very well be the place it gets displayed.";
Name[0] = "-Management";
Quotation[1] = "Fantastic f****** article [on the Colts]. That's some really, really good stuff."
Name[1] = "-Roy Hobbson"

Quotation[2] = "Y&T is like a good Merlot...dark and dry."
Name[2] = "-Brad K."

Quotation[3] = "I have a feeling different people will be able to extract different results upon reading this book, and that is always a refreshing thing to see from literature."
Name[3] = "-Tyler M."




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

