// INITIALIZES QUOTES INTO AN ARRAY
	var qt = new Array();
	qt[ 0] = "One word of truth outweighs the whole word<br /><span>Alexander Solzhenistyn</span>";
	qt[ 1] = "The truth of a matter will always haunt you, no matter how secret the hiding place<br /><span>Anon</span>";
	qt[ 2] = "Integrity is telling myself the truth and honesty is telling the truth to other people<br /><span>Spencer Johnson</span>";
	qt[ 3] = "Honest hearts produce honest actions<br /><span>Brigham Young</span>";
	qt[ 4] = "A lie may take care of the present, but it has no future<br /><span>Author Unknown</span>";
	qt[ 5] = "A lie has speed, but truth has endurance<br /><span>Edgar J. Mohn</span>";
	qt[ 6] = "To believe in something, and not to live in it, is dishonest<br /><span>Gandhi</span>";
	qt[ 7] = "Without integrity, no company can have good word of mouth<br /><span>Jay Abraham</span>";
	qt[ 8] = "I never had a policy; I have just tried to do my very best each and every day. <br /><span>Abraham Lincoln</span>";
	qt[ 9] = "Lose your wealth and you've lost nothing. Lose your health and you've lost something. Lose your character and you've lost everything.<br /><span>Ben Lapadula</span>";
	qt[10] = "Do not repeat anything you will not sign your name to. <br /><span>Author Unknown</span>";
	qt[11] = "My belief is that personal freedom cannot grow beyond personal responsibility. The more people that learn to be fully accountable for their lives, the more freedom each of us can enjoy and the more fulfilling all of our lives will be. <br /><span>Reed Konsler</span>";
	qt[12] = "You must take personal responsibility. You cannot change the circumstances, the seasons, or the wind, but you can change yourself. That is something you have charge of.<br /><span>Jim Rohn</span>";
	qt[13] = "We all have dreams. But in order to make dreams into reality, it takes an awful lot of determination, dedication, self-discipline, and effort.<br /><span>Jesse Owens</span>";
	qt[14] = "The price of greatness is responsibility.<br /><span>Winston Churchill</span>";

// GENERATES RANDOM NUMBER
	var rand = Math.floor(Math.random()*15)

// DISPLAYS QUOTE
function dispQuote()	{
	document.write(qt[rand])
}