// JavaScript Document
function toggleDisplay(element) {
	var theElement = document.getElementById(element);
	
	if(theElement.style.display == "none") {
		theElement.style.display = "block";
	} else {
		theElement.style.display = "none";
	}
}


//START QUOTES
var textnumber = 34 ; 
var randomnumber = Math.random() ; 
var rand1 = Math.round( (textnumber-1) * randomnumber) + 1 ; 
text = new Array 

text[1] = '<p class="text">Music speaks louder than words, It\'s the only thing that the whole world listens to.<br /> ~Payne/Pease/Scarpiello (recorded by Peter, Paul and Mary)</p>';
text[2] = '<p class="text">Music is an open-sesame...<br /> ~Clive Robbins (a music therapist)</p>';
text[3] = '<p class="text">If music be the food of love, play on.<br /> ~Shakespeare, Twelfth Night</p>';
text[4] = '<p class="text">Music washes away from the soul the dust of everyday life.<br /> ~Berthold Auerbach </p>';
text[5] = '<p class="text">Music\'s the medicine of the mind.<br /> ~John A. Logan </p>';
text[6] = '<p class="text">If a composer could say what he had to say in words he would not bother trying to say it in music. <br /> ~Gustav Mahler </p>';
text[7] = '<p class="text">Music is the medicine of the breaking heart.<br /> ~Leigh Hunt </p>';
text[8] = '<p class="text">Music is what feelings sound like. <br /> ~Author Unknown </p>';
text[9] = '<p class="text">Music is the mediator between the spiritual and the sensual life.<br /> ~Ludwig van Beethoven</p>';
text[10] = '<p class="text">Music is your own experience, your thoughts, your wisdom.  If you don\'t live it, it won\'t come out of your horn.<br /> ~Charlie Parker</p>';
text[11] = '<p class="text">Music expresses feeling and thought, without language; it was below and before speech, and it is above and beyond all words.<br /> ~Robert G. Ingersoll</p>';
text[12] = '<p class="text">He who hears music, feels his solitude peopled at once.<br /> ~Robert Browning</p>';
text[13] = '<p class="text">Music produces a kind of pleasure which human nature cannot do without.<br /> ~Confucius </p>';
text[14] = '<p class="text">Music is well said to be the speech of angels.<br /> ~Thomas Carlyle, <em>Essays</em>, \"The Opera\" </p>';
text[15] = '<p class="text">Music, once admitted to the soul, becomes a sort of spirit, and never dies.<br /> ~Edward George Bulwer-Lytton</p>';
text[16] = '<p class="text">Music is love in search of a word.<br /> ~Sidney Lanier </p>';
text[17] = '<p class="text">A painter paints pictures on canvas.  But musicians paint their pictures on silence.<br /> ~Leopold Stokowski </p>';
text[18] = '<p class="text">There is no truer truth obtainable \"By Man than comes of music.\"<br /> ~Robert Browning </p>';
text[19] = '<p class="text">After silence that which comes nearest to expressing the inexpressible is music.<br /> ~Aldous Huxley  </p>';
text[20] = '<p class="text">Music and rhythm find their way into the secret places of the soul<br /> ~Plato </p>';
text[21] = '<p class="text">Music takes us out of the actual and whispers to us dim secrets that startle our wonder as to who we are, and for what, whence and whereto.<br /> ~Ralph Waldo Emerson</p>';
text[22] = '<p class="text">Music is a moral law. It gives soul to the universe, wings to the mind, flight to the imagination, and charm and gaiety to life and to everything.<br /> ~Plato </p>';
text[23] = '<p class="text">Where words fail, music speaks.<br /> ~Hans Christian Anderson</p>';
text[24] = '<p class="text">It is cruel, you know, that music should be so beautiful. It has the beauty of loneliness and of pain: of strength and freedom. The beauty of disappointment and never-satisfied love. The cruel beauty of nature, and everlasting beauty of monotony.<br /> ~Benjamin Britten</p>';
text[25] = '<p class="text">If you can walk you can dance. If you can talk you can sing<br /> ~Zimbabwe Proverb </p>';
text[26] = '<p class="text">One good thing about music - when it hits you, you feel no pain.<br /> ~Bob Marley</p>';
text[27] = '<p class="text">Music was my refuge. I would crawl into the space between the notes and curl my back to loneliness. <br /> ~Maya Angelou </p>';
text[28] = '<p class="text">You can dance anywhere, even if only in your own heart.<br /> ~Author unknown</p>';
text[29] = '<p class="text">I wake up to the sound of music, Mother Mary comes to me, Shine until tomorrow, let it be.<br /> ~Paul McCartney </p>';
text[30] = '<p class="text">My heart, which is so full to overflowing, has often been solaced and refreshed by music when sick and weary.<br /> ~Martin Luther (1463 - 1546) </p>';
text[31] = '<p class="text">Beauty in the Ear of the Beholder<br /> ~Eduard Hanslick, 1854</p>';
text[32] = '<p class="text">When the documentary of \'Awakenings\' was made in 1973, the first thing the film director asked was, \'Could we meet the music therapist?  She seems to be the most important person around here\'.<br /> ~Oliver Sacks </p>';
text[33] = '<p class="text">It all began with a drum.<br /> ~Dizzy Gillespie </p>';
text[34] = '<p class="text">....everything is energy, vibration, frequency, resonance. Even the most solid of material objects is ultimately a dance of constantly changing energy patterns. In its essence, reality is all rhythm, all music. The world is sound.<br /> ~ Houston, Jean, (1997) A Passion for the Possible. A Guide To Realizing Your True Potential.Harper Collins, New York, NY, p. 74 </p>';

var mytext = text[rand1];
//END QUOTES





