var quotes = new Array(20) // Add your quotes below
  quotes[0]="It’s a definite maybe.";
  quotes[1]="Your BFF will call you in the next 15 minutes.";
  quotes[2]="Someone has a crush on you.";
  quotes[3]="Something exciting is coming your way.";
  quotes[4]="You’re going to win tickets to your favorite concert!";
  quotes[5]="It’s never too late to say you’re sorry.";
  quotes[6]="Your luck is about to change.";
  quotes[7]="Things will soon go your way.";
  quotes[8]="You look totally awesome today.";
  quotes[8]="It’s better to be a smarty, than a smarty pants.";
  quotes[9]="The number 4 is your lucky number today.";
  quotes[10]="You are such a good BF.";
  quotes[11]="Always add value to your friendships.";
  quotes[12]="Your ability to juggle many tasks will take you far.";
  quotes[13]="Give more than you take.";
  quotes[14]="Laziness may appear attractive, but work gives satisfaction.";
  quotes[15]="Success is liking yourself, liking what you do, and liking how you do it.";
  quotes[16]="Logic will get you from A to B.  Imagination will take you everywhere.";
  quotes[17]="Strive for excellence, not perfection.";
  quotes[18]="You can be anything you want to be.  Be your best.";
  quotes[19]="You studied hard.  You will ace your test today..";

function fortune(objID) {
  var rand_int = Math.floor(Math.random()*20); // Get a number for picking the quote
  document.getElementById(objID).innerHTML=(quotes[rand_int]); // Put the quote in the box
}
function numbers(objID) {
  var space = ('      ') // Spacer for between numbers
  var rand_inta = Math.floor(Math.random()*100); // Get first number
  var rand_intb = Math.floor(Math.random()*100); // Get second number
  var rand_intc = Math.floor(Math.random()*100); // Get third number
  var rand_intd = Math.floor(Math.random()*100); // Get fourth number
  var rand_inte = Math.floor(Math.random()*100); // Get fifth number
  document.getElementById(objID).innerHTML=(rand_inta+space+rand_intb+space+rand_intc+space+rand_intd+space+rand_inte); //Print it all into the second box
}




