
// ==============================================
// 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] = "An efficient and well planned service.";
Quotation[1] = "These guys are professional and are on the ball.";
Quotation[2] = "Slinky were easy to work with, completely down to earth and delivered a quality of product and value we couldn't have got anywhere else.";
Quotation[3] = "The service that they have given has far exceeded expectation.";
Quotation[4] = "At all times they have been professional and committed to helping us achieve our objectives.";
Quotation[5] = "Slinky have a real \'can-do\' attitude, and came up with the goods despite being given really tight turnaround times.";
Quotation[6] = "We\'ve found their expertise and professional advice invaluable on a number of occassions.";
Quotation[7] = "The dedication and expertise that you have given has made us extremely proud of the videos for Birmingham Pride 2011.";
Quotation[8] = "The end result was perfect, just what we were looking for.";




// ======================================
// 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();
