
	//quote array
	quoteList = new Array();

	quoteList[0] = "Take care of your body.  It's the only place you have to live - Jim Rohn";
	quoteList[1] = "To keep the body in good health is a duty... otherwise we shall not be able to keep our mind strong and clear. - Buddha";
	quoteList[2] = "Your body is a temple, but only if you treat it as one. - Astrid Alauda";
	quoteList[3] = "Emotion always has its roots in the unconscious and manifests itself in the body. - Irene Claremont de Castillejo";
	quoteList[4] = "The body is your temple.  Keep it pure and clean for the soul to reside in.  - B.K.S. Iyengar";
	quoteList[5] = "The body never lies.  - Martha Graham";
	quoteList[6] = "Our bodies are apt to be our autobiographies. - Frank Gillette Burgess";
	quoteList[7] = "If the body be feeble, the mind will not be strong. - Thomas Jefferson";
	quoteList[8] = "Hormones, vitamines, stimulants and depressives are oils upon the creaky machinery of life.  Principal item, however, is the machinery. - Martin H. Fischer";
	quoteList[9] = "To have a body functioning so perfectly that when its few simple needs are met it never calls attention to its own existence. - Bertha Stuart Dyment";
	quoteList[10] = "A woman is as young as her knees. - Mary Quant";
	quoteList[11] = "The human body is the only machine for which there are no spare parts. - Hermann M. Biggs";
	quoteList[12] = "The body is a bundle of careful compromises.  - Randolph Nesse and George Williams";


	//randomization
	var now = new Date();
	var secs = now.getSeconds();
	var raw_random_number = Math.random(secs);
	var random_number = Math.round(raw_random_number * (quoteList.length));

	if (random_number == quoteList.length){random_number = 0}
	
	
	//set quote
	var quote = quoteList[random_number];

