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

	// QUOTATIONS
	Quotation[0] = '&ldquo;<span class="green">not</span> just acting green&rdquo;';
	Quotation[1] = '&ldquo;<span class="green">beat</span> them at their own game&rdquo;';
	Quotation[2] = '&ldquo;<span class="green">not</span> another clothing brand&rdquo;';
	Quotation[3] = '&ldquo;<span class="green">dream</span> but don&rsquo;t sleep&rdquo;';
	Quotation[4] = '&ldquo;to serve and protect <span class="green">nature&rsquo;s</span> intrests&rdquo;';
	Quotation[5] = '&ldquo;not <span class="green">just</span> green&rdquo;';
	Quotation[6] = '&ldquo;<span class="green">for</span> the right reasons&rdquo;';
	Quotation[7] = '&ldquo;<span class="green">not</span> just trying to be green&rdquo;';

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