// JavaScript Document

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

	// QUOTATIONS
	Quotation[0] = 'As an employer, I now use Fusion to help find candidates. <br /><br /> Recently I employed a successful candidate in an account management role – she was introduced to me by Fusion and is doing very well.';
	Quotation[1] = 'Fusion listens to our requirements and provides us with strong candidates. <br /><br />It saves us time because we know they will short-list good people.<br /><br />Field Sales Manager, Ronseal.';
	Quotation[2] = 'Quotation 3';
	Quotation[3] = 'Quotation 4';
	Quotation[4] = 'Quotation 5';
	Quotation[5] = 'Quotation 6';

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