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

	// QUOTATIONS
	Quotation[0] = 'Jen is very knowledgeable on all the products!  I want Jen to do my party!  <br><br>-Rachel';
	Quotation[1] = 'Jen made me feel relaxed.  <br><br>-Patricia';
	Quotation[2] = 'Jen is fun and makes things exciting!  <br><br>-Melissa';
	Quotation[3] = 'Jen is the best!  Very fun!  <br><br>-Essence';
	Quotation[4] = 'Jen has a great variety of products!  <br><br>-Anne';
	Quotation[5] = 'Jen is friendly, knows the products, has real life stories.  <br><br>-Sherra';
	Quotation[6] = 'Jen is fun, creative and interactive!  <br><br>-Tristan';
	Quotation[7] = 'Great work!  Fun, open demonstration!  <br><br>-Rebecca';
	Quotation[8] = 'Fun!  Great information!  I am having a party!  <br><br>-Tiffany';
        Quotation[9] = 'You\'ve got a fascinating way of making a living and it suits you well.  You\'ve got the right mix of understanding and compassion, and the saucy humor to make it work!  <br><br>-Eric';
        Quotation[10] = 'Jen is very informative and has a great sense of humor!  <br><br>-Nina';
        Quotation[11] = 'I loved how candid Jen was.  She put everyone at ease and made me want everything!  <br><br>-Kate';
        Quotation[12] = 'The oils and lotions were amazing, and Jen is also amazing.  <br><br>-Dustin';
        Quotation[13] = 'Jen! You are great.  So much better than last time, and last time was a blast to begin with!  Love!  <br><br>-Richard';
	var which = Math.round(Math.random()*(Quotation.length - 1));
	document.getElementById('textrotator').innerHTML = Quotation[which];
	
	setTimeout('rotateEvery('+sec+')', sec*3000);
}




