  quotes = new Array
  quotes[0] = "The average teenager in the U.S. spends about <b>$100</b> a week. The average teenager's income is <b>$75</b> a week."
  quotes[1] = "American teenagers spent an estimated <b>$153</b> billion in 2006."
  quotes[2] = "<b>19 years:</b> the amount of time it takes to pay off a $2,000 credit card bill at 18% interest if you pay only the minimum due each month. By the time youšve paid off the card, you'll have paid $3,862 in interest."
  quotes[3] = "The average student-loan debt of a four-year college student at graduation is <b>$20,000</b>."
  quotes[4] = "<b>Less than zero:</b> the personal savings rate of Americans, meaning that as a whole, we spend more than we earn."
  quotes[5] = "The average cost of car insurance in the U.S. is more than <b>$800</b> a year. "
  quotes[6] = "Small businesses provide <b>60 to 80</b> percent of new jobs every year in the U.S."
  quotes[7] = "There were <b>13.8</b> million home-based businesses in the U.S. in 2005."
  quotes[8] = "There are <b>10.6</b> million companies in the U.S. that are at least 50% owned by women. "
  quotes[9] = "There are <b>3 million</b> US businesses owned by people of color. "
  quotes[10] = "The average CEO salary is just over <b>$1 million</b>. The average total yearly compensation for a CEO is more than <b>$10 million</b>."
  quotes[11] = "The average work week of an investment banker is <b>70 hours</b>. "
  quotes[12] = "<b>1:</b> the number of major investment banks actually located on Wall Street."
  quotes[13] = "<b>1792:</b> The New York Stock Exchange is founded. "
  quotes[14] = "<b>1943:</b> Women begin working on the New York Stock Exchange trading floor."
  quotes[15] = "<b>$17.4</b> trillion: the total market value of the companies traded on the New York Stock Exchange."
  quotes[16] = "<b>Twenty-one</b> percent of Americans invest in stocks and shares."
   

 
  var rand = Math.floor(Math.random()* quotes.length)

  document.write(quotes[rand])


