// ==============================================
// 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] = "\"QuickTurn - your name says it all! I needed 500 CDs and 300 DVDs duplicated and printed by noon the next day and you guys made it happen. I made my plane, the conference, and everyone loved the printed CDs and DVDs.\"";
Quotation[1] = "\"Thanks QuickTurn! I tell everyone we do business with about your CD and DVD duplication and printing. You have a quick-turnaround, very responsive and gave us great feedback throughout the duplication process.\"";
Quotation[2] = "\"Duplication in a day!  We got the 1000 DVDs printed and copied back the next day. QuickTurn, you live up to your name. When it comes to CDs and DVDs you are a life saver. Thank you, QuickTurn!\"";

// ======================================
// 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();

