/* author: ajpierre@cthp.org */
/* Generated by AceHTML Freeware http://freeware.acehtml.com */
/* Creation date: 12/4/2007 */



TipOfTheDay.tips = new Array();
TipOfTheDay.AddTip = TipOfTheDay_AddTip;


function GetRandom(start,end) 
{ 
    var range = end - start + 1; 
    var result = start + Math.floor(Math.random()*range); 
    return result; 
}

function TipOfTheDay_AddTip(tipText)
{
	TipOfTheDay.tips[TipOfTheDay.tips.length] = tipText;
}

function TipOfTheDay()
{
	var index = GetRandom(1,TipOfTheDay.tips.length);
	var tipText = TipOfTheDay.tips[index-1];
	document.write("<p> " + tipText + "</p>");
}


TipOfTheDay.AddTip("The secret to health for both mind and body is not to mourn for the past, not to worry about the future, or not to anticipate troubles, but to live in the present moment wisely and earnestly. <br />-Buddha");
TipOfTheDay.AddTip("A much more effective and lasting method of face-lifting than surgical technique is happy thinking, new interests, and outdoor exercise. <br />-Sara Murray Jordan");
TipOfTheDay.AddTip("A man's health can be judged by which he takes two at a time - pills or stairs.<br /> -Joan Welsh");
TipOfTheDay.AddTip("When health is absent, wisdom cannot reveal itself, art cannot manifest, strength cannot fight, wealth becomes useless, and intelligence cannot be applied. <br />-Herophilus");
TipOfTheDay.AddTip(" He who has health has hope; and he who has hope has everything. <br>-Arabian Proverb");
TipOfTheDay.AddTip("Health is a state of complete physical, mental and social well-being, and not merely the absence of disease or infirmity. <br />-Heave ");
TipOfTheDay.AddTip("The preservation of health is a duty. Few seem conscious that there is such a thing as physical morality. <br />-Herbert Spencer");
TipOfTheDay.AddTip("If we live our lives continually motivated by anger and hatred, even our physical health deteriorates. <br />-His Holiness the Dalai Lama");
TipOfTheDay.AddTip("It's all spirit and it's all connected.<br />-Grandfather William Commanda, Algonquin");
TipOfTheDay.AddTip("If people are going to get back into balance, one of the things they have to do is seek the truth. They have to start really speaking the truth themselves, and that's a difficult thing to do. The way it is now in the world, we don't mind lying. <br />-John Peters (Slow Turtle), Wampanoag");
// TipOfTheDay.AddTip("Walk tall and carry a big stick.");
// TipOfTheDay.AddTip("Look before you leap.");
// TipOfTheDay.AddTip("Walk tall and carry a big stick.");

