/*
   
   Function List:
   tipTitle(n)
      Used to return the title for tip "n"

   tipText(n)
      Used to return the text of tip "n"
*/


	




function getAuthor(n) {
   var title = new Array();
   title[1] = "-- Alfred Lord Tennyson (1809 - 1892)";   
   title[2] = "-- Albert Einstein"; 
   title[3] = "-- Douglas Adams (1952 - 2001)";
   title[4] = "-- Theodore Roosevelt (1858 - 1919)";
   title[5] = "-- Thomas Jefferson (1743 - 1826)";
   title[6] = "-- Theodore Roosevelt (1858 - 1919)";
   


   return title[n];
}


function getQuote(n) {
   var text = new Array();
   text[1] = "The happiness of a man in this life does not consist in the absence but in the mastery of his passions.";
   text[2] = "The secret to creativity is knowing how to hide your sources.";
   text[3] = "I may not have gone where I intended to go, but I think I have ended up where I needed to be.";
   text[4] = "Do what you can, with what you have, where you are.";
   text[5] = "Determine never to be idle...It is wonderful how much may be done if we are always doing.";
   text[6] = "Whenever you are asked if you can do a job, tell 'em, 'Certainly I can!' Then get busy and find out how to do it.";
   

   return text[n];
}



