// JavaScript Document
function showQuote() {
	myDate = new Date();
	thisDate = myDate.getDate();
	switch(thisDate) {
	case 1:
		document.write("<i>Never trust a spiritual leader that cannot dance: The Karate kid</i>");
	break;
	case 2:
		document.write("<i>Dancing is a very crude attempt to get into the rhythm of life: George Bernard Shaw, Back to Methuselah (1921)</i>");
	break;
	case 3:
		document.write("<i>Dancing is the loftiest, the most moving, the most beautiful of the arts, because it is no mere translation or abstraction from life, it is life itself:' Havelock Ellis: The dance of life: 1923</i>");
	break;
	case 4:
		document.write("<i>Imagine this: there was a time in history, a long time ago, when the bounce and sway of a woman?s hips was considered so beautiful that they set it to music and made a dance out of it... From the FCBD.com website  http://www.fcbd.com/</i>");
	break;
	case 5:
		document.write("<i>Work like you don't need money, love like you've never been hurt, and dance like no one's watching:   Source not known</i>");
	break;
	case 6:
		document.write("<i>There is a bit of insanity in dancing that does everybody a great deal of good. Edwin Denby</i>");
	break;
	case 7:
		document.write("<i>We're fools whether we dance or not, so we might as well dance.  ~Japanese Proverb </i>");
	break;
	case 8:
		document.write("<i>Dancing is wonderful training for girls, it's the first way you learn to guess what a man is going to do before he does it.  ~Christopher Morley, Kitty Foyle</i>");
	break;
	case 9:
		document.write("<i>It's not the size of the step that's important, but the direction in which it takes you</i>");
	break;
	case 10:
		document.write("<i>Dancing is like dreaming with your feet!  ~Constanze</i>");
	break;
	case 11:
		document.write("<i>The truest expression of a people is in its dance and in its music.  Bodies never lie.  ~Agnes de Mille</i>");
	break;
	case 12:
		document.write("<i>You can dance anywhere, even if only in your heart.  ~Author Unknown</i>");
	break;
	case 13:
		document.write("<i>Dancing is the perpendicular expression of a horizontal desire.  ~Author Unknown</i>");
	break;
	case 14:
		document.write("<i>Dancing in all its forms cannot be excluded from the curriculum of all noble education; dancing with the feet, with ideas, with words, and, need I add that one must also be able to dance with the pen?  ~Friedrich Nietzsche </i>");
	break;
	case 15:
		document.write("<i>Dance is the only art of which we ourselves are the stuff of which it is made.  ~Ted Shawn, Time, 25 July 1955</i>");
	break;
	case 16:
		document.write("<i>Common sense and a sense of humor are the same thing, moving at different speeds.  A sense of humor is just common sense, dancing.  ~William James </i>");
	break;
	case 17:
		document.write("<i>Learning salsa has transformed my life: Nichola Jane Manning (Archaeologist)</i>");
	break;
	case 18:
		document.write("<i>Dancers are the athletes of God.  ~Albert Einstein</i>");
	break;
	case 19:
		document.write("<i>Dancers are instruments, like a piano the choreographer plays.  ~George Balanchine</i>");
	break;
	case 20:
		document.write("<i>There are short-cuts to happiness, and dancing is one of them.  ~Vicki Baum</i>");
	break;
	case 21:
		document.write("<i>Remember, Ginger Rogers did everything Fred Astaire did, but backwards and in high heels.  ~Faith Whittlesey</i>");
	break;
	case 22:
		document.write("<i>It takes an athlete to dance, but an artist to be a dancer.  ~Shanna LaFleur</i>");
	break;
	case 23:
		document.write("<i>I don't want people who want to dance, I want people who have to dance.  ~George Balanchine</i>");
	break;
	case 24:
		document.write("<i>Stifling an urge to dance is bad for your health - it rusts your spirit and your hips.  ~Adabella Radici</i>");
	break;
	case 25:
		document.write("<i>Dancing can reveal all the mystery that music conceals.  ~Charles Baudelaire</i>");
	break;
	case 26:
		document.write("<i>Dance first.  Think later.  It's the natural order.  ~Samuel Beckett</i>");
	break;
	case 27:
		document.write("<i>Dancing is the poetry of the foot.  ~John Dryden</i>");
	break;
	case 28:
		document.write("<i>Dance is the hidden language of the soul.  ~Martha Graham</i>");
	break;
	case 29:
		document.write("<i>Dancing is just discovery, discovery, discovery.  ~Martha Graham</i>");
	break;
	case 30:
		document.write("<i>Movement never lies.  It is a barometer telling the state of the soul's weather.  ~Martha Graham</i>");
	break;
	case 31:
		document.write("<i>The dance is a poem of which each movement is a word.  ~Mata Hari</i>");
	break;
	default:
		document.write("<i>default found</i>");
	break;
	}
}