<!--
var arrQuote= new Array(5)
arrQuote[1]="<em>A work of art is above all an adventure of the mind.</em> -Eugene Ionesco";
arrQuote[2]="<em>I try to apply colors like words that shape poems, like notes that shape music.</em> -Joan Miro";
arrQuote[3]="<em>Music, in performance, is a type of sculpture.  The air in the performance is sculpted into something.</em> -Frank Zappa";
arrQuote[4]="<em>Simplicity is the essence of the great, the true, and the beautiful in art</em>. -George Sand";
arrQuote[5]="<em>Every child is an artist.  The problem is how to remain an artist once he grows up</em>. -Pablo Picasso";  
arrQuote[6]="<em>Art evokes the mystery without which the world would not exist.</em> -Rene-Francois-Ghislain Magritte";
arrQuote[7]="<em>Art is... a question mark in the minds of those who want to know what's happening.</em> -Aaron Howard";
arrQuote[8]="<em>Great dancers are not great because of their technique; they are great because of their passion.</em> -Martha Graham";
arrQuote[9]="<em>Originality is simply a pair of fresh eyes.</em> -Thomas Wentworth Higginson";
arrQuote[10]="<em>Anyone who has never made a mistake has never tried anything new.</em> -Albert Einstein";  
arrQuote[11]="<em>Life is a great big canvas, and you should throw all the paint on it you can.</em> -Danny Kaye";
arrQuote[12]="<em>No artist is ahead of his time. He is his time.  It is just that the others are behind the time.</em> -Martha Graham";
arrQuote[13]="<em>Words make you think a thought.  Music makes you feel a feeling.  A song makes you feel a thought.</em> -E.Y. Harbug";
arrQuote[14]="<em>Unless you try to do something beyond what you have already mastered, you will never grow.</em> -Ralph Waldo Emerson";
arrQuote[15]="<em>Art is not what you see, but what you make others see.</em> -Edgar Degas";  
arrQuote[16]="<em>Those who do not want to imitate anything, produce nothing.</em> -Salvador Dali";  
arrQuote[17]="<em>The artist is not a special kind of man, but every man is a special kind of artist.</em> -A.K. Coomaraswamy";  
arrQuote[18]="<em>This is the nature of genius, to be able to grasp the knowable even when no one else recognizes that it is present.</em> -Deepak Chopra";  
arrQuote[19]="<em>Imagination has always had powers of resurrection that no science can match.</em> -Ingrid Bengis";  
arrQuote[20]="<em>Genius is childhood recalled at will.</em> -Charles Baudelaire";  
arrQuote[21]="<em>The job of the artist is always to deepen the mystery.</em> -Sir Francis Bacon";  
arrQuote[22]="<em>The aim of art is to represent not the outward appearance of things, but their inward significance.</em> -Aristotle";  
arrQuote[23]="<em>Where words fail, music speaks.</em> -Hans Christian Andersen";  
arrQuote[24]="<em>Good art is not what it looks like, but what it does to us.</em> -Roy Adzak";  
arrQuote[25]="<em>Creativity is allowing yourself to make mistakes.  Art is knowing which ones to keep.</em> -Scott Adams";  
arrQuote[26]="<em>Color in a picture is like enthusiasm in life.</em> -Vincent Van Gogh";  
arrQuote[27]="<em>Inspiration exists, but it has to find you working.</em> -Pablo Picasso";  
arrQuote[28]="<em>We should consider every day lost on which we have not danced at least once.</em> -Friedrich Wilhelm Nietzsche";  
arrQuote[29]="<em>Adventure can be an end in itself.  Self discovery is the secret ingredient that fuels daring.</em> -Grace Lichtenstein";  
arrQuote[30]="<em>Imagination will often carry us to worlds that never were.  But without it, we go nowhere.</em> -Carl Sagan";  
var TotalQuotes = 30;
var random = Math.random() * (TotalQuotes)
var quote = Math.round( random );
if (quote < 1) {
  quote = 1;
}
//-->