﻿
var quotes=new Array()

quotes[0] = new Array();
quotes[0]["q"] = "Wordsmiths is one of the best editorial support organisations that we have had the privilege of working with ...";
quotes[0]["a"] = "Helene Perold and Associates";

quotes[1] = new Array();
quotes[1]["q"] = "The editors at Wordsmiths impress with their professionalism. They add value to every publication they work on ...";
quotes[1]["a"] = "Delien Burger, Editor, <i>South Africa Yearbook</i>";

quotes[2] = new Array();
quotes[2]["q"] = "Wordsmiths is a professional outfit with expertise in plain language editing ...";
quotes[2]["a"] = "Nicky Clarke, MD, Manik Design";

quotes[3] = new Array();
quotes[3]["q"] = "Oh you really are meticulous! And a great defender of an author's omissions and commissions. Good for us all ...";
quotes[3]["a"] = "M. Mutloatse, Mutloatse Arts Heritage Trust";

quotes[4] = new Array();
quotes[4]["q"] = "Editing is a sensitive and artistic process in itself, and for this I must thank Kathleen Bartels of Wordsmiths ...";
quotes[4]["a"] = "Tom Cottrell, author, <i>Five-hour Pilgrim</i>";

quotes[5] = new Array();
quotes[5]["q"] = "We have done business with Wordsmiths for many years, and it has always been a pleasure ...";
quotes[5]["a"] = "Helene Perold";

quotes[6] = new Array();
quotes[6]["q"] = "May I thank you very sincerely for the magnificent work that you did in your calm and professional way to bring this project to its conclusion...";
quotes[6]["a"] = "Tony Leon, author, <i>On the contrary</i>";  

quotes[7] = new Array();
quotes[7]["q"] = "Just a quick note to say how much I am enjoying working with you, and how superb I find your proofing. It’s a real relief to enjoy such quality support!";
quotes[7]["a"] = "Fiona de Villers, <i>Editor: Independent Education</i>";  

quotes[8] = new Array();
quotes[8]["q"] = "I think your touches are miraculous and that you have a tremendous gift and talent. I can still hear my voice in the text so I am happy." ;
quotes[8]["a"] = "Dr Ruben Richards";  

quotes[9] = new Array();
quotes[9]["q"] = "You have taken off the jagged edges and created a smooth read. Magical and thank you. Now I know why I will never be an editor!" ;
quotes[9]["a"] = "Dr Ruben Richards";  


var whichquote=Math.floor(Math.random()*(quotes.length))
document.write('<em>“</em><p>');
document.write(quotes[whichquote]["q"])
document.write('<em><span>”</span></em></p>');
document.write('<p class="author">' + quotes[whichquote]["a"] + '</p>');


 


