// JavaScript Document

var Quotation=new Array()

Quotation[0] = "\"I almost spent $3000 on data recovery. Thanks for saving me money!\"<br> - Jesse R.  New York, NY";
Quotation[1] = "\"My employees are better equipped to get work done now. Many thanks.\"<br> - Nick C.  Knoxville, TN";

var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));
function showQuotation(){document.write(Quotation[whichQuotation]);}
showQuotation();




