var quotes = new Array();
quotes[0] = '<div class=\"quote\">\"Phew - thanks!\"<div class=\"src\">AIT Marketing Associate Ltd.</div></div>';
quotes[1] = '<div class=\"quote\">\"It was a pleasure working with you, so I had no trouble recommending you to others at Northgate.\"<div class=\"src\">Northgate-is</div></div>';
quotes[2] = '<div class=\"quote\">\"I think indeed you have gone above and beyond! You rock.\"<div class=\"src\">XfxForce</div></div>';
quotes[3] = '<div class=\"quote\">\"Many thanks for your help with getting our site translated into Spanish, Danish, German, Japanese and French - it looks great! Many thanks for your swift turnaround.\"<div class=\"src\">Neuxpower</div></div>';
quotes[4] = '<div class=\"quote\">\"Many thanks again for these translations and your translators comments. Working with webwide translations has been pleasurable experience and I hope you\'re able to help me again in future.\"<div class=\"src\">Alternative Futures</div></div>';
quotes[5] = '<div class=\"quote\">\"Le séjour de notre délégation s\'est parfaitement déroulé. La contribution de votre Société a été essentielle et nous vous exprimons donc notre reconnaissance.\"<div class=\"src\">Conseil général des Hauts-de-Seine</div></div>';
quotes[6] = '<div class=\"quote\">\"...Auch ich fand die Zusammenarbeit mit webwide translations sehr angenehm und werde bei Bedarf wieder auf Sie zurückkommen.\"<div class=\"src\">BDT GmbH</div></div>';
quotes[7] = '<div class=\"quote\">\"Ich muss sagen, dass Sie sehr gute Arbeit geleistet haben. Wir hatten bis dato noch nie mit einer Übersetzungsagentur wie webwide translations zusammengearbeitet. Das Ergebnis ist doch wirklich sehr überzeugend.\"<div class=\"src\">ahhh kah! GmbH</div></div>';
quotes[8] = '<div class=\"quote\">\"Thank you for all your deliveries. Love you.\"<div class=\"src\">Crisp</div></div>';
quotes[9] = '<div class=\"quote\">\"Great work.\"<div class=\"src\">Xfxforce</div></div>';
quotes[10] = '<div class=\"quote\">\"Once again, thank you for being so prompt with the translation.\"<div class=\"src\">Ming Foods</div></div>';
quotes[11] = '<div class=\"quote\">\"Thank YOU, for all the help and support. Our Paris conference was a success. webwide translations have been great. There is so much happening in our office at the moment and we all appreciate your help. Everybody pointed out how professional you all are and also how dedicated to your work.\"<div class=\"src\">GLE oneLondon</div></div>';
quotes[12] = '<div class=\"quote\">\"Great job!!! Well done.\"<div class=\"src\">Xerox</div></div>';
quotes[13] = '<div class=\"quote\">\"Thank you very much for being so quick.\"<div class=\"src\">Skive</div></div>';
quotes[14] = '<div class=\"quote\">\"webwide translations have worked to my tight deadlines, kept me well informed as to progress and delivered on time.\"<div class=\"src\">Ascentia Corporate Coaching</div></div>';
quotes[15] = '<div class=\"quote\">\"Thank you for your work and prompt delivery: 500,000 words into French and German in a record time. We\'ll soon have to start with Spanish and Italian.\"<div class=\"src\">SpaFinder</div></div>';

function randomQuote()
{
	var qId1 = Math.round(Math.random()*(quotes.length-1));
	var qId2 = Math.round(Math.random()*(quotes.length-1));
	while( qId2 == qId1 )
	{
		qId2 = Math.round(Math.random()*(quotes.length-1));
	}
	document.write(quotes[qId1]);
	document.write(quotes[qId2]);
}

