// ==============================================
// 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] = "Television was a new concept of advertising for Skinfood, so we were extremely fortunate to have found Blu to create our TVC. Blu really took the time to understand our brand and what our key messages were before coming up with a few very different options...";
Quotation[1] = "Wanted did an exceptional job. They even went the extra mile on making sure that the right footage was captured and edited. If you are looking for a production that is of the highest quality, comes in on time and budget and the whole process is enjoyable I couldn't recommend Wanted highly enough...";
Quotation[2] = "I have worked with Blu and Wanted for over 15 years. Wanted has again and again provided excellent creative solutions for my clients...";
Quotation[3] = "Thank you Blu for your smooth sailing approach to the Postie TVCs. Great talent direction and seamless production as always...";




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