function randomOneOf(list) 
// Given  : list is a nonempty list (array) 
// Returns: a random item from the list 
{    
   	return randomInt(0, list.length-1); 
}

function randomInt(low, high) 
// Given   : low <= high 
// Returns : a random integer in the range [low, high] 
{ 
    return Math.floor(Math.random()*(high-low+1)) + low; 
} 

list = new Array();
athor = new Array();
list[0] = "It does not require many words to speak the truth.";
athor[0] = "Chief Joseph, Nez Perce tribe";
list[1] = "Knowledge is inherent in all things.  The world is a library...";
athor[1] = "Chief Luther Standing Bear of the Oglala Sioux";
list[2] = "The very essence of leadership is that you have to have a vision.";
athor[2] = "Theodore Hesburgh";
list[3] = "If a man loses anything and goes back and looks carefully for it, he will find it.";
athor[3] = "Chief Sitting Bull";
list[4] = "Leadership is a combination of strategy and character. If you must be without one, be without the strategy.";
athor[4] = "Gen. H. Norman Schwarskopf";
list[5] = "The leader who exercises power with honor will work from the inside out, starting with himself.";
athor[5] = "Blaine Lee";


