

function showQuotations(){	
	if (typeof document.getElementById("quotations") != "undefined" && document.getElementById("quotations")) {
		var quotations = new Array();		
		quotations[0] = "All things pass from obscurity to manifestation, <br />inspired harmoniously by the breath of the void. <br /><br /> Lao Tse, Tao Te Ching";
		quotations[1] = "The essences of Taoism and Buddhism are the Vortex and the Void, respectively, that which cannot be captured, and that which cannot be described, the nameless and the featureless. <br /><br /> A.S. Kline<br /><i>Like Water or Clouds</i>";
		quotations[2] = "The opposite of a fact is falsehood, but the opposite of one profound truth may very well be another profound truth.<br /><br />Niels Bohr";
		quotations[3] = "When I am working on a problem I never think about beauty. I only think about how to solve the problem. But when I have finished, if the solution is not beautiful, I know it is wrong.<br /><br />R. Buckminster Fuller";
		quotations[4] = "There is something patently insane about all the typewriters sleeping with all the beautiful plumbing in the beautiful office buildings &#8212;and all the people sleeping in the slums.<br /><br />R. Buckminster Fuller";
		quotations[5] = "Dare to be naive.<br /><br />R. Buckminster Fuller";
		quotations[6] = "Cause is effect concealed. Effect is cause revealed.<br /><br />Vimilananda<br /><i>The Aghora Trilogy</i>";
		quotations[7] = "Art is a kind of innate drive that seizes a human being and makes him its instrument. <br />The artist is not a person endowed with free will who seeks his own ends, but one who allows art to realize its purpose through him.<br /><br /> C.G. Jung";
		quotations[8] = "The creation of something new is not accomplished by the intellect but by the play instinct acting from inner necessity. The creative mind plays with the objects it loves.<br /><br /> C.G. Jung";
		quotations[9] = "The Blues is a chair, not a design for a chair or a better chair or a bigger chair. It is the first chair. It is a chair for sitting on, not for looking at or being appreciated. You sit on that music.<br /><br />John Lennon";
		quotations[10] = "Good jazz is when the leader jumps on the piano, waves his arms, and yells. Fine jazz is when a tenorman lifts his foot in the air. Great jazz is when he heaves a piercing note for 32 bars and collapses on his hands and knees. A pure genius of jazz is manifested when he and the rest of the orchestra runaround the room while the rhythm section grimaces and dances around their instruments.<br /><br />Charles Mingus";
		quotations[11] = "Over all, I think the main thing a musician would like to do is give a picture to the listener of the many wonderful things that he knows of and senses in the universe. . . That&#8217;s what I would like to do. I think that&#8217;s one of the greatest things you can do in life and we all try to do it in some way. The musician&#8217;s is through his music.<br /><br />John Coltrane";
		quotations[12] = "All a musician can do is to get closer to the sources of nature, and so feel that he is in communion with the natural laws.<br /><br />John Coltrane";
		quotations[13] = "Keep searchin' for your mystery note on the universal piano of life.<br /><br />Rahsaan Roland Kirk";
		quotations[14] = "A sentence should contain no unnecessary words, a paragraph no unnecessary sentences, for the same reason that a drawing should have no unnecessary lines and a machine no unnecessary parts.<br /><br />William Strunk, jr., <em>The Elements of Style</em>";
		quotations[15] = "A story should have a beginning, a middle, and an end... but not necessarily in that order.<br /><br />Jean-Luc Godard";
		quotations[16] = "A masterpiece can never look like a masterpiece. It must be imperfect and full of mistakes, since it is the triumph of the mistakes that makes it a masterpiece.<br /><br />Jean Cocteau";
		quotations[17] = "Art is the lie that tells the truth.<br /><br />Pablo Picasso";
		quotations[18] = "It's just a ride and we can change it any time we want. It's only a choice. No effort, no work, no job, no savings and money, just a choice, right now, between fear and love.<br /><br />Bill Hicks";
		quotations[19] = "We are the facilitators of our own creative evolution.<br /><br />Bill Hicks";
		quotations[20] = "To see the world in a grain of sand, <br />and to see heaven in a wild flower, <br />hold infinity in the palm of your hands, <br />and eternity in an hour.<br /><br />William Blake";
		quotations[21] = "To achieve adjustment and sanity and the conditions that follow from them, we must study the structural characteristics of this world first and, then only, build languages of similar structure, instead of habitually ascribing to the world the primitive structure of our language.<br /><br />Alfred Korzybski <br /><i>Science and Sanity</i>";
		quotations[22] = "Who looks outside, dreams; who looks inside, awakes.<br /><br />C.G. Jung";
		quotations[23] = "Sometimes I wish I could walk up to my music for the first time, as if I had never heard it before. Being so inescapably a part of it, I’ll never know what the listener gets, what the listener feels, and that’s too bad.<br /><br />John Coltrane";
		quotations[24] = "My music is the spiritual expression of what I am — my faith, my knowledge, my being … When you begin to see the possibilities of music, you desire to do something really good for people, to help humanity free itself from its hangups … I want to speak to their souls.<br /><br />John Coltrane";
		quotations[25] = "Music washes away the dust of every day life. <br /><br />Art Blakey";
		quotations[26] = "First of all, I never strive for identity. That’s something that just has happened automatically as a result, I think, of just putting things together, tearing things apart and putting it together my own way, and somehow I guess the individual comes through eventually.<br /><br />Bill Evans";
		quotations[27] = "My creed for art in general is that it should enrich the soul; it should teach spirituality by showing a person a portion of himself that he would not discover otherwise... a part of yourself you never knew existed.<br /><br />Bill Evans";
		quotations[28] = "Anyone can make the simple complicated. Creativity is making the complicated simple.<br /><br />Charles Mingus";
		quotations[29] = "Good jazz is when the leader jumps on the piano, waves his arms, and yells. Fine jazz is when a tenorman lifts his foot in the air. Great jazz is when he heaves a piercing note for 32 bars and collapses on his hands and knees. A pure genius of jazz is manifested when he and the rest of the orchestra runaround the room while the rhythm section grimaces and dances around their instruments.<br /><br />Charles Mingus";
		var randomNumber = Math.round(Math.random()*(quotations.length - 1));
		var quoteHTML = "<span class='quotation'>" + quotations[randomNumber] + "</span>";
		document.getElementById("quotations").innerHTML = quoteHTML;
	}
}


// onload events
window.onload = function() {
	showQuotations();
}