$(document).ready(function(){
  var musicQuotes = new Array();
  musicQuotes[0] = "\"I played the flute and I was in marching band. Playing an instrument taught me a lot of discipline.\"<br /><p class=\"author\"> - Halle Berry, Actress</p>";
  musicQuotes[1] = "\"Music is the language of the gods. It brings people together, and it brings them joy.\"<br /><p class=\"author\"> - Steven Seagal, Actor</p>";
  musicQuotes[2] = "\"Music education is important in every way. It helps children with math and it opens their minds.\"<br /><p class=\"author\"> - Michael J. Fox, Actor</p>";

  var randomQuote = Math.floor(Math.random()*musicQuotes.length);
  $('#quote').html(musicQuotes[randomQuote]);
});
