function rotateEvery(sec)
{
	var Quotation=new Array()

	// QUOTATIONS
	Quotation[0] = '"Today I will do what others won\'t, so tomorrow I can accomplish what others can\'t." -Jerry Rice';
	Quotation[1] = '"You already have every characteristic necessary for success if you recognize, claim, develop and use them all." -Zig Ziglar';
	Quotation[2] = '"The simple act of paying positive attention to people has a great deal to do with productivity." -Thomas Peters';
	Quotation[3] = '"You may have the greatest bunch of individual stars in the world, but if they don\'t play together, the club won\'t be worth a dime." -Babe Ruth';
	Quotation[4] = '"Be careful of the words you say, keep them soft & sweet. You never know from day to day, which ones you\'ll have to eat!" -Larry King';
	Quotation[5] = '"I have always been driven to buck the system, to innovate, to take things beyond where they\'ve been." -Sam Walton';
	
	


	var which = Math.round(Math.random()*(Quotation.length - 1));
	document.getElementById('textrotator').innerHTML = Quotation[which];
	
	setTimeout('rotateEvery('+sec+')', sec*20000);
}