// JavaScript Document

// ************ Quotes from the Coach  **************//
var wordArray = new makeArray('"I am a preponderant of social interpretation, still, listen to how you identify."',
				'"Sleeves cover, but reality is what lies beneath."', 
				'"Taste is obvious but the interpretation of is not."', 
				'"Too much of anything is not good, so watch the dosage of what others prescribe."',
				'"Friendship is effective in directions, be knowledgeable of its possibilities."',
				'"When you could, did you?  If you did not, what did it cost?"',
				'"Reality to implicate is not a necessity to service, but survival is an offering of thine borne existence."',
				'"Pain is obvious, how you handle it is not."',
				'"A man of words and not of deeds is akin a garden full of weeds."',
				'"I did of "We" if you could the virtue, would you do as me."',
				'"Journeys are long, but the longest is inward."',
				'"Choose your route carefully and beware of cross traffic."',
				'"Laugh and the world laughs with you, weep and you weep alone."',
				'"Those whom God wishes to destroy he first makes mad."',
				'"Most of mans troubles comes in his inability to be still."',
				'"You can stand strongest in your weakest time."',
				'"Thou wilt keep him in perfect peace, whose mind is stayed on thee. -Isaiah 26:3"',
				'"There are two sides to every question."',
				'"Opportunity is missed by most people because it is dressed in overalls and looks like work. -Thomas Edison (1847-1931)"',
				'"Faith is the substance of things hoped for and the evidence of things not seen."',
				'"Exit: a way or passage out; Enter: to make a beginning. Which did you go first?"',
				'"I once knew a pair of starting blocks that turned into a stepping stone...I did not realize that I would be the steps to be walked on."',
				'"You will only be here for a little while, so do not waste your breath."',
				'"Mamma may have, Poppa may have; its obvious because you are, they did!"',
				'"Success at anything requires two vital ingredients: enthusiasm and perseverance; Powered by God."',
				'"God loves to help those who strive to help themselves. Faults, do not fear to abandon them."',
				'"Tough times do not last, but tough people do."',
				'"If you always do what you ve always done, then what you always get what you always got."',
				'"Silver and gold have I none, but such as I have, give I thee. - Acts 3:6"'
				);

function makeArray(){
this.length = makeArray.arguments.length
for (var i = 0; i < this.length; i++)
this[i + 1] = makeArray.arguments[i]
}

function randNum (num) {
var now = new Date();
var rand = Math.round(num * Math.cos(now.getTime()));
if (rand < 0) rand = - rand; if (rand == 0) rand++;
return rand;
}


// -->
