//©2004 Greg Matthews Design - www.gregmatthews.co.uk
//This script is protected under British Copyright law and may not be used without prior written permission
//Contact admin@gregmatthews.co.uk for more information

//Generates a random quote and its author from the list

var arr = 0
quotes = new Array()
authors = new Array()

quotes[arr] = "An excellent job with a high level<br>of artistic and creative design"
authors[arr] = "Mike Ford - The London Business Support Service"
arr++

quotes[arr] = "Extremely efficient and professional"
authors[arr] = "Andy Rumfitt - Innovacion"
arr++

quotes[arr] = "Efficient and flexible with a<br>particularly high level of customer service"
authors[arr] = "Claire Brown - Supply London"
arr++

quotes[arr] = "A consistently high standard,<br>achieving our desired results and often beyond"
authors[arr] = "Claire Brown - Supply London"
arr++

quotes[arr] = "Dreaming Fish carried out the exercise with<br>minimum fuss and maximum professionalism"
authors[arr] = "Fiona Sturley - Manufacturing Advisory Service"
arr++

quotes[arr] = "I have got what I wanted which is not merely a good film,<br>but a BRILLIANT film !!!"
authors[arr] = "Audrey Helps - Tooting Town Centre Manager"
arr++

quotes[arr] = "Great working with you.<br>The project looks (and sounds) awesome!"
authors[arr] = "Terry Eckersley - Think Media Music"
arr++

index = Math.floor(Math.random() * quotes.length)