﻿
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] = "The quality of Cuticle Nippers is very good. Ms. Areti";
Quotation[1] = "Thank you for making it painless, pleasant and most of all hassle free. Edward Brown";
Quotation[2] = "The tweezers arrived this morning Perfect for our needs. Thank you. Stevie Capozio";
Quotation[3] = "Scissors are excellent. It has been a pleasure doing business with you. Simon Thomas";
Quotation[4] = "The best on the net! Scissors are worth much more than I paid. Anthony Reed";
Quotation[5] = "Nippers are the most valuable we have EVER purchased. Mike White";
Quotation[6] = "Thinning Scissors has completely surpassed our expectations. Julie Price";
Quotation[7] = "I am really satisfied with my barber razor. Brian Jackson";
Quotation[8] = "It's incredible. Tweezers are great. I don't know what else to say. This is simply unbelievable. Kate Scanlon";
Quotation[9] = "Your company is great to work with. Buy this now. You won't regret it. Sue Phillips";

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








