//<![CDATA[
var quote=new Array();
    quote[0]='Absolutely excellent &#150; we got Greek friends of ours to read the translation, and they were very impressed <span>Reeta Chakrabarti</span>';    /* add as many quotes as you like!*/
    quote[1]='Thank you for this... it is great and we are very pleased once more with the quality of the translation <span>Penal Reform International</span>';
    quote[2]='Once again thank you for all your help in turning around the translations in such little time <span>OgilvyAction London</span>';
    quote[3]='Very impressed with the translation, so thank you! <span>C&amp;H Creative</span>';
    quote[4]='Thanks so much for all your help so far, you guys have been great <span>Fleishman-Hillard Group</span>';
    quote[5]='We often asked for the impossible but you always managed to help us out &#150; for which we are most appreciative <span>IPPF</span>';
    quote[6]='...very nicely done and quick <span>SACO Logistics Ltd</span>';
    

var speed=8000;    /*this is the time in milliseconds adjust to suit*/
var Q = quote.length;

function showQuote() {
	
	var whichQuotation=Math.round(Math.random()*(Q-1));

     document.getElementById("quotes").innerHTML=quote[whichQuotation];

  }

setInterval('showQuote()',speed);
   
 //]]>
