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

	// QUOTATIONS
	Quotation[0] = 'Very high demand for engineering design services';
	Quotation[1] = 'Shortage of labour in all sectors of E&amp;C';
	Quotation[2] = 'Do Incentive Schemes Work? ';
	Quotation[3] = 'How to capture the anticipated lower cost window?';
	Quotation[4] = 'Costs are rising and schedules are being extended';
	Quotation[5] = 'The struggle of agreeing the Target Estimate and Target Schedule is a Liar’s Contest ';
	Quotation[6] = 'Overheated E&amp;C contractor and vendor market';
	Quotation[7] = 'Can your project benefit from the current market?';
	Quotation[8] = 'CICP goal is to inspire you to greater project achievements ';
	Quotation[9] = 'Hands-on CICP consultants for effective contracting';
	Quotation[10] = 'In the current market conditions E&C contractors choose their clients';
	Quotation[11] = 'Commercial pressure, not an alliance, is leading driver for cost reduction';
	Quotation[12] = 'The Human Factor is a key success factor ';
	Quotation[13] = 'The earned Fee expectation will decide whether “A” E&amp;C contractors are interested ';
	Quotation[14] = 'A single source negotiated contract is a E&C contractors dream ';


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