

var quotes = new Array;

quotes.push("Hakuna Matata!");

quotes.push("<i>It's about the process, so the process can create the performance</i>.  <br>  Nick Saban");

quotes.push("<i>Music expresses that which cannot be put into words and that which cannot remain silent</i>. <br>  Victor Hugo");

quotes.push("<i>A grounding in the arts will help our children to see, to bring a uniquely human perspective to science and technology.  In short, it will help them as they grow smarter to also grow wiser</i>.<br>Robert E. Allen");

quotes.push("<i>Music is the poetry of the air</i>.<br> Sviatoslav Richter");

quotes.push("<i>There are no shortcuts to any place worth going.</i>.<br> Beverly Sills");

document.write(quotes[(Math.floor(Math.random() * quotes.length))]);

