function rotateEvery(sec)
{
	var Quotation=new Array()

	// QUOTATIONS
	Quotation[0] = 'Thanks for the update! Great work!<br><br><b>Jenny McAllister</b><br>Optima Equity';
	Quotation[1] = 'Great work, on time and on budget! Excellent work as always! Many thanks<br><br><b>Jenny McAllister</b><br>Optima Equity';
	Quotation[2] = 'Always a pleasure to work with - They took our updates on board and made all the relevant changes very quickly and explained all the changes in an easy to understand manner! Would definitely reccommend.<br><br><b>Jenny McAllister</b><br>Optima Equity';
	Quotation[3] = 'As always it is a pleasure to work with SembiSoft. They make the job easy and stress-free which is great for us. Thanks again for all your help!<br><br><b>Jenny McAllister</b><br>Optima Equity';
	Quotation[4] = 'I was very nervous having never used elance before that I would get someone from another country that didn\'t understand my needs. I was so pleased with SembiSoft that I am recommending them to all my friends and coworkers. I can\'t wait to employ their services again.<br><br><b>Johnny L. Whieldon</b><br>Whieldon Group';
	Quotation[5] = 'The system is good. Doing what it\'s supposed to as expected. The clerk has been inputting all data (even without reading the manual-just started using it before I told her anything) so I am really pleased as its really easy to use. We tried placing an order yesterday-start to end and it worked perfectly.<br><br><b>Jaspal Kalsi</b><br>MC Builder Contractors';

	var which = Math.round(Math.random()*(Quotation.length - 1));
	document.getElementById('textrotator').innerHTML = Quotation[which];
	
	setTimeout('rotateEvery('+sec+')', sec*1000);
}
