// JavaScript Document
// 
// IMPORTANT NOTE -- PLEASE READ BEFORE MODIFYING
// Below is an set of quotes stored in a Javascript array.
// It is easy to add one when you want by just adding a new one
// inside double quotes. You will notice that the last quote in 
// the array does not have a comma after it, while all the ones
// before the last one does have a comma after it.
// Also, the "&mdash; <em>" before the quotee and the "</em>" after
// makes it have a long emdash and the name in italics.


var quotes = new Array(

"Stifling an urge to dance is bad for your health &mdash; it rusts your spirit and your hips. &mdash; <em>Adabella Radici</em>",

"To dance is to be out of yourself. Larger, more beautiful, more powerful. This is power, it is glory on earth and it is yours for the taking. &mdash; <em>Agnes De Mille</em>",

"Dance is the hidden language of the soul &mdash; <em>Martha Graham</em></em>",

"Dance like nobody's looking. &mdash; <em>Agnes de Mille.",

"There are short-cuts to happiness, and dancing is one of them. &mdash; <em>Vicki Baum</em>",

"Dancing is just discovery, discovery, discovery. &mdash; <em>Martha Graham</em>",

"To watch us dance is to hear our hearts speak. &mdash; <em>Hopi saying</em>",

"Socrates learned to dance when he was seventy because he felt that an essential part of himself had been neglected. &mdash; <em>Source Unknown</em>",

"Dance, even if you have nowhere to do it but your living room. &mdash; <em>Kurt Vonnegut</em>"

);

function DisplayQuote() {
	document.writeln( '<p class="quote">' + quotes[ Math.floor( Math.random() * quotes.length ) ] + '</p>');
}
