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

	// QUOTATIONS
		
	Quotation[0] = ' ';

	
Quotation[0] = '“Great film! Very engaging plot. Strong acting. Beautiful cinematography!”';
Quotation[1] = '“Me and my family enjoyed the movie.”';
Quotation[2] = '“It was a profound image of a single black father.”';
Quotation[3] = '“I would like to see a sequel to The Grind”';
Quotation[4] = '“Beautiful film. Deeply moving. Powerful. Lovely cinematography. Great work interns! Nice work Baycat. I wanted the film to be longer. Fabulous acting and rich talent. Keep saving lives.”';
Quotation[5] = '“Great film - brought up important issues. Great cinematography, flow, concept, passion. Get it out to the community and the world... The making of, Q&A and talk by the cast was inspiring, tear jerking, monumental, exceptional, soulful, passionate. Spread it around!”';


	

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

